排队WP自定义脚本排在第一位

时间:2017-09-28 17:25:42

标签: wordpress

是否可以先排队自定义脚本? 我需要首先加载我的脚本 (这个enqueue函数必须放在我的自定义插件中。)

https://developer.wordpress.org/reference/functions/wp_enqueue_script/#usage

谢谢

2 个答案:

答案 0 :(得分:1)

并不完全是您要求的内容,但如果您希望在依赖它的脚本之前加载脚本,则可以使用wp_enqueue_script的依赖项参数来传递脚本。例如,您的example_script脚本取决于my-script

wp_enqueue_script('example_script', 'some_url_to_that_script', array('my-script'), NULL, true);

答案 1 :(得分:0)

您需要检查是否为add_filter优先级选项,尝试使用零

add_filter( string $tag, callable $function_to_add, int $priority = 10, int $accepted_args = 1 )

实施例

add_filter( 'wp_enqueue_scripts', 'my_function', 0 );