为什么wp_en队列脚本()不起作用?

时间:2020-11-18 作者:vishal

这是代码

function custom_theme_script(){
    wp_register_style(\'bootstrap\', get_template_directory_uri() . \'/css/bootstrap.css\' );

    wp_enqueue_style(\'bootstrap\');

    wp_register_style(\'style\', get_template_directory_uri() . \'/css/style.css\');

    wp_enqueue_style(\'style\');

       wp_deregister_script( \'jquery\' );
    wp_enqueue_script(\'bootstrap.min\', get_template_directory_uri() . \'/js/bootstrap.min.js\', array(), \'3.5.1\', true );
}

add_action(\'wp_enqueue_scripts\', \'custom_theme_script\');`
这是head tag的屏幕截图enter image description here

标题中缺少什么。php和函数。php文件

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

嘿兄弟用这个密码get_stylesheet_directory_uri

function custom_theme_script(){
    wp_register_style(\'bootstrap\', get_stylesheet_directory_uri.() .\'/css/bootstrap.css\' );

    wp_enqueue_style(\'bootstrap\');

    wp_register_style(\'style\', get_stylesheet_directory_uri() . \'/css/style.css\');

    wp_enqueue_style(\'style\');

       wp_deregister_script( \'jquery\' );
    wp_enqueue_script(\'bootstrap.min\', get_template_directory_uri() . \'/js/bootstrap.min.js\', array(), \'3.5.1\', true );
}

add_action(\'wp_enqueue_scripts\', \'custom_theme_script\');
`

相关推荐