How can I change action priority in Wordpress?

后端 未结 3 1151
北海茫月
北海茫月 2021-01-04 00:49

I\'m using the Thematic framework for a child theme. It has a number of hooks, but I\'m looking at thematic_header() in particular. The thematic_header() hook adds the follo

3条回答
  •  被撕碎了的回忆
    2021-01-04 01:24

    Just in case this helps someone, the variable actions are stored in is

    global $wp_filter;
    var_dump( $wp_filter[$hook_name] );
    

    Which is an array of arrays with the keys being the priority when the action was added.

提交回复
热议问题