Wordpress和Bootstrap-无法通过functions.php链接脚本

时间:2015-12-24 11:45:08

标签: php jquery wordpress twitter-bootstrap

多次阅读wordpress codex,我仍然无法链接文件,以便我的下拉菜单可以正常工作。有什么我需要做的,而不是在functions.php中吗?

<?php
function load_js() {
  wp_enqueue_script( 'mytheme-jquery', get_template_directory_uri() . '/js/jquery-2.1.4.min.js', array( 'jquery' ) );
  wp_enqueue_script( 'mytheme-bootstrap', get_template_directory_uri() . '/js/bootstrap.min.js', array( 'jquery' ) );
}
add_action( 'wp_enqueue_scripts', 'load_js' );
?>

0 个答案:

没有答案