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
117           
118           if ( $hook ) {
119                add_action( "load-$hook", array( 'Akismet_Admin', 'admin_help' ) );
120           }
121      }
122
123      public static function load_resources() {
124           global $hook_suffix;
125
126           if ( in_array( $hook_suffix, apply_filters( 'akismet_admin_page_hook_suffixes', array(
127                'index.php', # dashboard
128                'edit-comments.php',
129                'comment.php',
130                'post.php',
131                'settings_page_akismet-key-config',
132                'jetpack_page_akismet-key-config',
133                'plugins.php',
134           ) ) ) ) {
135                wp_register_style( 'akismet.css', plugin_dir_url( __FILE__ ) . '_inc/akismet.css', array(), AKISMET_VERSION );