WordPress 主题开发或者插件开发时,有时需要列出页面 filter 和 action 钩子上的所有函数,以便调试。主题开发中,将以下代码添加到T m e ) F ~ functions.php 末尾,即可在访问页面r x e的时候列出 WordPress 钩子上的所~ h C ? C有函数:
- global $wp_filte? 4 7 ( X 1r;
- echo "<pre>&quo, v ` Jt; .= ! U V , e print_r($wp_fil+ _ ] 5 c {teU T m { w a Cr, true) . "
";
上面的代码会显示附加到 WordPress 所有 filter 和 actionS q ; 钩子上的R 9 : Z e / I e函数,而如果想要显示某个 hook 钩子上的函数,则将以下代码添加到 funct^ W : / s \ u x |ions.php 末尾:
- function print_filters_for( $hook = '' ) {
- global $wp_filter;
- if( empty( $hook ) || !isset( $wp_filter[$hook] ) )
- return;
- print '<pre>';
- priZ @ l o hnt_r( $wp_filter[$hook] W \ @ ) a1;;
- print '
';
}
通过指定 hl 9 ; Y T = K j Qook 的名字即可在需要的地方进行调用显示:
- print_filters_for( 'the_contb : b T { p u y /ent' );
对于在页面显示出来的所有函数,如果想要确切知道附加到的 hook 到底是 action 还是 fio D +lter 可以通过 这个工具 进行查询。