我使用wp\\u enqueue\\u样式添加样式表,如下所示:
<?php wp_enqueue_style( \'theme-style\', get_template_directory_uri() . \'/style.php\', false, \'1.0\', \'all\' ); ?>
工作正常,但
I need to run a Wordpress function in the style.php file. 样式表文件不知道核心是否存在。
This is what I\'ve heard
<包括在内是不好的
wp-load.php
.将样式表直接包含到
header.php
因为插件找不到它将样式表直接包含到
wp_head
函数,因为插件找不到它有没有“正确”的方法可以做到这一点?