Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: akismet_spam_check_warning_link_text

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
776                'code' => (int) get_option( 'akismet_alert_code' ),
777                'msg'  => get_option( 'akismet_alert_msg' )
778           ) );
779      }
780
781      public static function display_spam_check_warning() {
782           Akismet::fix_scheduled_recheck();
783
784           if ( wp_next_scheduled('akismet_schedule_cron_recheck') > time() && self::get_number_spam_waiting() > 0 ) {
785                $link_text = apply_filters( 'akismet_spam_check_warning_link_text', sprintf( __( 'Please check your <a href="%s">Akismet configuration</a> and contact your web host if problems persist.', 'akismet'), esc_url( self::get_page_url() ) ) );
786                Akismet::view( 'notice', array( 'type' => 'spam-check', 'link_text' => $link_text ) );
787           }
788      }
789
790      public static function display_invalid_version() {
791           Akismet::view( 'notice', array( 'type' => 'version' ) );
792      }
793
794      public static function display_api_key_warning() {