为什么我必须为wp_enQueue_script指定所有参数才能在页脚中加载jQuery?

时间:2012-08-14 作者:Ben

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值,这似乎是一种倒退。

1 个回复
最合适的回答,由SO网友:Joseph Leedy 整理而成

因为这是特定函数的签名。如果您不喜欢它,可以始终使用下面这样的包装函数。

function wpse61783_enqueue_script( $handle, $src ) {
    wp_enqueue_script( $handle, $src, array(), \'\', true );
}

结束

相关推荐