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