使用wp_enqueue_script在wordpress中加载jquery文件

时间:2016-04-20 08:00:44

标签: php jquery wordpress

我想在jquery中使用wp_enqueue_script加载wordpress个文件。下面是我的function.php文件中的代码,该代码无法正常工作,任何人都可以提到错误的位置,谢谢

function load_myfiles() { // load external file  
    wp_deregister_script( 'jquery' );

    wp_register_script( 'jquery', get_template_directory_uri() . '/js/jquery-1.11.1.min.js' );
    wp_register_script( 'bootstrap-js', get_template_directory_uri() . '/js/bootstrap.js' );

    wp_enqueue_script('jquery'); // enqueue the external file
    wp_enqueue_script('bootstrap-js'); // enqueue the external file  
}
add_action( 'wp_enqueue_scripts', 'load_myfiles' );

0 个答案:

没有答案