我已经尝试了很多我在 SO 和网上找到的这样做的版本,但没有一个对我有用。
我正在运行 3.4.2 版。也许这个版本有不同的方法?
我的代码是:
<?php
function my_scripts_method() {
wp_enqueue_script( 'jquery', '//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js' );
wp_enqueue_script( 'jquery-ui', 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.8/jquery-ui.min.js' );
}
add_action( 'wp_enqueue_scripts', 'my_scripts_method' );
?>
</head>
我在标签上方有这个。
谁能帮助我并告诉我哪里出错了?