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
100           
101           if ( $hook ) {
102                add_action( "load-$hook", array( 'Akismet_Admin', 'admin_help' ) );
103           }
104      }
105
106      public static function load_resources() {
107           global $hook_suffix;
108
109           if ( in_array( $hook_suffix, apply_filters( 'akismet_admin_page_hook_suffixes', array(
110                'index.php', # dashboard
111                'edit-comments.php',
112                'comment.php',
113                'post.php',
114                'settings_page_akismet-key-config',
115                'jetpack_page_akismet-key-config',
116                'plugins.php',
117           ) ) ) ) {
118                wp_register_style( 'akismet.css', plugin_dir_url( __FILE__ ) . '_inc/akismet.css', array(), AKISMET_VERSION );