get_server_connectivity example


            }
            
            echo '<div class="notice notice-success"><p>' . esc_html( $message ) . '</p></div>';
        }
        else if ( isset( $_GET['akismet_recheck_error'] ) ) {
            echo '<div class="notice notice-error"><p>' . esc_html( __( 'Akismet could not recheck your comments for spam.', 'akismet' ) ) . '</p></div>';
        }
    }

    public static function display_status() {
        if ( ! self::get_server_connectivity() ) {
            Akismet::view( 'notice', array( 'type' => 'servers-be-down' ) );
        }
        else if ( ! empty( self::$notices ) ) {
            foreach ( self::$notices as $index => $type ) {
                if ( is_object( $type ) ) {
                    $notice_header = $notice_text = '';
                    
                    if ( property_exists( $type, 'notice_header' ) ) {
                        $notice_header = wp_kses( $type->notice_header, self::$allowed );
                    }
                
                    

function akismet_remove_comment_author_url() {
    return Akismet_Admin::remove_comment_author_url();
}
function akismet_add_comment_author_url() {
    return Akismet_Admin::add_comment_author_url();
}
function akismet_check_server_connectivity() {
    return Akismet_Admin::check_server_connectivity();
}
function akismet_get_server_connectivity( $cache_timeout = 86400 ) {
    return Akismet_Admin::get_server_connectivity( $cache_timeout );
}
function akismet_server_connectivity_ok() {
    _deprecated_function( __FUNCTION__, '3.0' );

    return true;
}
function akismet_admin_menu() {
    return Akismet_Admin::admin_menu();
}
function akismet_load_menu() {
    return Akismet_Admin::load_menu();
}
Home | Imprint | This part of the site doesn't use cookies.