Created
November 22, 2022 07:25
-
-
Save Asikur22/d2b66ac2c348ae860a72a58899f3ab69 to your computer and use it in GitHub Desktop.
WP Show all hooks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'wp_footer', function () { | |
global $wp_filter; | |
echo '<pre style="background: #fff; color: #000; padding: 15px; text-align: left;">'; | |
var_dump($wp_filter); | |
echo '</pre>'; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment