wp_enqueue_script(\'jquery\', includes_url() . \'js/jquery.js\', array(\'\'), \'1.7.2\', true); // loads in the footer
wp_enqueue_script(\'jquery\',\'\', array(\'\'), \'\', true); // loads in the head
我只是认为,为了让脚本加载到我想要的地方,必须为每个参数包含一个非null值,这似乎是一种倒退。
最合适的回答,由SO网友:Joseph Leedy 整理而成
因为这是特定函数的签名。如果您不喜欢它,可以始终使用下面这样的包装函数。
function wpse61783_enqueue_script( $handle, $src ) {
wp_enqueue_script( $handle, $src, array(), \'\', true );
}