Answers:
您可以简单地使用“虚拟”句柄:
wp_register_style( 'dummy-handle', false );
wp_enqueue_style( 'dummy-handle' );
wp_add_inline_style( 'dummy-handle', '* { color: red; }' );
您的主题肯定具有默认的样式表(否则,甚至不会将其作为主题加载)。只需将此样式表用作内联CSS的处理程序即可。可以在主题TwentyFifteen 的functions.php中找到一个示例(为简洁起见,跳过了代码):
function twentyfifteen_scripts() {
wp_enqueue_style( 'twentyfifteen-style', get_stylesheet_uri() );
}
function twentyfifteen_post_nav_background() {
wp_add_inline_style( 'twentyfifteen-style', $css );
}