我正在加载样式表和style
使用函数输入标题。php。这是可行的,但样式表显示在<style>
. 我需要订购样式表above 这个style
块
/*-----------------------------------------------------------------------------------*/
/* Load CSS into header
/*-----------------------------------------------------------------------------------*/
function folio_dynamic_css() {
wp_enqueue_style( \'theme\', get_template_directory_uri() . \'/assets/css/style.css\', false, \'1.0\', \'all\' );
ob_start();
echo \'<style type="text/css">\';
# css styles here
echo \'</style>\';
# compress CSS
$output = ob_get_clean();
echo preg_replace(\'/^\\s+|\\n|\\r|\\s+$/m\', \'\', $output) ."\\n";
}
add_action(\'wp_enqueue_scripts\', \'folio_dynamic_css\', 1 );