我可以让它在页眉中工作,但我怎样才能在页脚中得到它。我在我的 wordpress 上使用论文框架。
function load_scripts() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'http://code.jquery.com/jquery-1.7.2.min.js');
wp_enqueue_script( 'jquery');
wp_register_script( 'bootstrap', '/wp-content/themes/thesis/custom/js/bootstrap.min.js', true);
wp_enqueue_script( 'bootstrap');
}
add_action('wp_enqueue_scripts', 'load_scripts');
我说的是真的,它似乎不起作用。我一直用这个作为参考。wp_enqueue_script($handle,$src,$deps,$ver,$in_footer);