Advertisement
iEmanuele

Check/List filters for given hook

Aug 19th, 2013
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2. function print_filters_for( $hook = '' ) {
  3.     global $wp_filter;
  4.     if( empty( $hook ) || !isset( $wp_filter[$hook] ) )
  5.         return;
  6.  
  7.     print '<pre>';
  8.     print_r( $wp_filter[$hook] );
  9.     print '</pre>';
  10. }
  11.  
  12. print_filters_for( 'the_excerpt' );
  13.  
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement