无法通过wp_enQueue_style加载样式表

时间:2014-07-19 作者:JAWA

我在用这个

<?php// Load the theme stylesheets
function theme_styles() { 

    // Load all of the styles that need to appear on all pages
    wp_enqueue_style( \'main_css\', get_template_directory_uri() . \'/style.css\' );

}
add_action(\'wp_enqueue_scripts\', \'theme_styles\');
?>
在我的主题中添加样式表,但它不会加载样式表

1 个回复
最合适的回答,由SO网友:Pmpr 整理而成

您还没有打开php 在代码段的开头正确标记。尝试在之后添加至少一个空格<?php 就在第一个之前//:

<?php // Load the theme stylesheets
    function theme_styles() { 

    // Load all of the styles that need to appear on all pages
    wp_enqueue_style( \'main_css\', get_template_directory_uri() . \'/style.css\' );

    }
    add_action(\'wp_enqueue_scripts\', \'theme_styles\');
?>

结束

相关推荐