wp_enqueue_scripts 具有一个参数,该参数指定是否应在中渲染脚本wp_head
或wp_footer
函数签名如下:
wp_enqueue_script( string $handle, string $src = \'\', array $deps = array(), string|bool|null $ver = false, bool $in_footer = false )
请注意,它是
5th 参数,因此,如果希望没有任何依赖项并使用脚本的默认版本号,则仍然必须提供这些参数。例如:
wp_enqueue_script( \'your_script_name\', \'your_script_location\', array(),false, true );
^
// This will cause the script to render in wp_footer |