Skip to content

Instantly share code, notes, and snippets.

@Asikur22
Created November 22, 2022 07:25
Show Gist options
  • Save Asikur22/d2b66ac2c348ae860a72a58899f3ab69 to your computer and use it in GitHub Desktop.
Save Asikur22/d2b66ac2c348ae860a72a58899f3ab69 to your computer and use it in GitHub Desktop.
WP Show all hooks
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