" . $tag . ""; $debug_tags[] = $tag; } }"/>

Print all wordpress hooks in front-page

Add below code in theme's functions.php:

add_action( 'all', 'th_show_all_hooks' );

function th_show_all_hooks( $tag ) {
    if(!(is_admin())){ // Display Hooks in front end pages only for admins
        $debug_tags = array();
        global $debug_tags;
        if ( in_array( $tag, $debug_tags ) ) {
            return;
        }
        echo "<pre>" . $tag . "</pre>";
        $debug_tags[] = $tag;
    }
}

Search Results