Changeset 10767
- Timestamp:
- 03/04/2021 11:55:49 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/handbook/inc/init.php
r10766 r10767 70 70 */ 71 71 public static function init() { 72 /** 73 * Fires before handbooks have been initialized. 74 */ 75 do_action( 'before_handbooks_init' ); 76 72 77 $post_types = self::get_post_types(); 73 78 … … 87 92 add_action( 'wp_enqueue_scripts', [ __CLASS__, 'enqueue_styles' ] ); 88 93 add_action( 'wp_enqueue_scripts', [ __CLASS__, 'enqueue_scripts' ] ); 94 95 /** 96 * Fires after handbooks have been initialized. 97 */ 98 do_action( 'after_handbooks_init' ); 89 99 } 90 100
Note: See TracChangeset
for help on using the changeset viewer.