akismet_display_cron_disabled_notice
akismet_display_cron_disabled_notice
Appears in: akismet.4.2.5, akismet.5.0, akismet.5.0.1, akismet.5.0.2, akismet.5.1, akismet.5.2, akismet.5.3, akismet.5.3.1, akismet.5.3.2, akismet.5.3.3, akismet.5.3.5, akismet.5.3.7, wordpress-6.0.1, wordpress-6.0.2, wordpress-6.0.3, wordpress-6.1, wordpress-6.1.1, wordpress-6.2, wordpress-6.2.1, wordpress-6.2.2, wordpress-6.3, wordpress-6.3.1, wordpress-6.3.2, wordpress-6.4, wordpress-6.4.1, wordpress-6.4.2, wordpress-6.4.3, wordpress-6.5, wordpress-6.5.2, wordpress-6.5.3, wordpress-6.5.4, wordpress-6.5.5, wordpress-6.6, wordpress-6.6.1, wordpress-6.6.2, wordpress-6.7, wordpress-6.7.1, wordpress-6.7.2
Hook Type: filter
Displaying hooks found in version: wordpress-6.7.2apply_filters('akismet_display_cron_disabled_notice') is found 1 times:
- /wp-content/plugins/akismet/class.akismet-admin.php line 109310891090109110921093109410951096109710981099
if
( wp_next_scheduled(
'akismet_schedule_cron_recheck'
) > time() && self::are_any_comments_waiting_to_be_checked() ) {
/*
* The 'akismet_display_cron_disabled_notice' filter can be used to control whether the WP-Cron disabled notice is displayed.
*/
if
( defined(
'DISABLE_WP_CRON'
) && DISABLE_WP_CRON && apply_filters(
'akismet_display_cron_disabled_notice'
, true ) ) {
Akismet::view(
'notice'
,
array
(
'type'
=>
'spam-check-cron-disabled'
) );
}
else
{
/* translators: The Akismet configuration page URL. */
$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() ) ) );
Akismet::view(
'notice'
,