样式表和脚本未加载

时间:2020-02-10 作者:Barot Uday
function spartans_styles(){
    wp_enqueue_style( \'maincss\', get_stylesheet_uri());
    wp_enqueue_style(\'mybootstrap\', get_template_directory_uri() . \'/assets/css/mybootstrap.css\');
    wp_enqueue_script(\'myscript\', get_template_directory_uri() . \'/assets/js/spartanscripts.js\');
    wp_enqueue_style(\'custom\', get_template_directory_uri(). \'/assets/css/custom.css\');
    wp_enqueue_style(\'GoogleFonts\', \'https://fonts.googleapis.com/css?family=Roboto&display=swap\');
    wp_enqueue_style(\'editor-styles\', get_template_directory_uri(). \'/assets/css/editor-style.css\');


    wp_enqueue_style( \'bootstrap\', get_template_directory_uri() . \'/assets/css/mybootstrap.css\', array(), \'1.1\', \'all\');


    // wp_enqueue_style(\'bootstrapcdn\', \'https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css\');

 }

add_action(\'wp_enqueue_scripts\', \'spartans_styles\');
1 个回复
SO网友:cjbj

您需要添加. \'/style.css\' 首先排队以实际加载该文件。此外,根据服务器的设置,如果不将版本号作为wp_enqueue_style.

最后,您可能需要检查您的代码registering 在其他地方(例如在父主题中),相同的句柄具有不同的参数。如果它们首先使用依赖项(第三个参数)注册,而该文件未加载,则它们也不会排队。

相关推荐