使用wp_enqueue_script 或者wp\\u print\\u script函数,您可以在jQuery加载后加载JS文件。使用参考-
<?php wp_enqueue_script( $handle, $src, $deps, $ver, $in_footer ); ?>
The
$dep
论点
(dependencies) 应为数组或null或空,并且不应像在代码中那样使用。它将与
wp_enqueue_script 或wp\\u print\\u script函数。
您第一次使用add_action
引用有效,但第二个引用无效。
在您的stb_enqueue_scripts
功能,应该是-
function stb_enqueue_scripts()
{
// third argument is the dependencies, should be array or boolean false
// fifth argument = boolean true if loading the script at footer
wp_enqueue_script( \'script-name\', \'script_url\', array(\'jquery\'), \'\', true );
}