Title: Page 62 – Alex Kirk

---

 * 
   ## 󠀁[Print all WordPress hooks](https://alex.kirk.at/2021/01/11/print-all-wordpress-hooks/)󠁿
   
 * January 11, 2021
 * Ever needed to print out all the hooks in the sequence they are being called (
   for example to find a good hook to modify a particular behavior)?
 *     ```wp-block-code
       add_filter( 'all', function( $tag ) {
       	echo "apply_filters($tag)<br/>";
       } );
       add_action( 'all', function( $tag ) {
       	echo "do_action($tag)<br/>";
       } );
       ```
   
 * Is a quick and easy way to do this via a small modification in `wp-settings.php`(
   after `plugin.php` is included).
 * [Web](https://alex.kirk.at/category/web/)
 * December 22, 2020
 * Test Status
 * [Web](https://alex.kirk.at/category/web/)

 [Previous Page](https://alex.kirk.at/page/61/?output_format=md&term_id=44049) [Next Page](https://alex.kirk.at/page/63/?output_format=md&term_id=44049)