Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: akismet_admin_page_hook_suffixes

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
126           
127           if ( $hook ) {
128                add_action( "load-$hook", array( 'Akismet_Admin', 'admin_help' ) );
129           }
130      }
131
132      public static function load_resources() {
133           global $hook_suffix;
134
135           if ( in_array( $hook_suffix, apply_filters( 'akismet_admin_page_hook_suffixes', array(
136                'index.php', # dashboard
137                'edit-comments.php',
138                'comment.php',
139                'post.php',
140                'settings_page_akismet-key-config',
141                'jetpack_page_akismet-key-config',
142                'plugins.php',
143           ) ) ) ) {
144                wp_register_style( 'akismet.css', plugin_dir_url( __FILE__ ) . '_inc/akismet.css', array(), AKISMET_VERSION );