按优先顺序排列wp入队脚本错误

时间:2013-06-20 作者:David Garcia

我想在加载任何其他脚本之前加载以下两个脚本,所以我添加了优先级1和2,但是我遇到了一个错误。我是在tutorial 这就是如何划分优先级

 add_action(\'wp_enqueue_scripts\', array(__CLASS__, \'frontend_enqueues\', 1));
        add_action(\'print_head_scripts\', array(__CLASS__, \'print_js\', 2));
警告:call\\u user\\u func\\u array()要求参数1为有效回调,数组必须在xxx/xx/xxx/wp includes/plugin中正好有两个成员。php在线406

警告:call\\u user\\u func\\u array()要求参数1为有效回调,数组必须在xxx/xx/xxx/wp includes/plugin中正好有两个成员。php在线173

请告知:)

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

您的括号级别稍有错误,因此中断了回调。

它应该是:

add_action( \'wp_enqueue_scripts\', array( __CLASS__, \'frontend_enqueues\' ), 1 );

结束

相关推荐

Custom Post Row Actions

我偶然发现this question 在写这个问题的时候。我有一个问题是关于这个问题的。我发现你用的是get_delete_post_link 筛选为我的操作创建一个新的url(或一个类似的函数——在任何情况下,我都会将该函数与布尔值一起使用)。唯一的问题是,I don\'t know how to capture the event now. 考虑到我在谷歌上找不到很多关于行后操作的例子,我将不胜感激-/public function _wp_filter_get_delete_post_link( $