ActionScheduler_WPCommentCleaner::has_logs()
Determines if there are log entries in the wp comments table.
Uses the flag set on migration completion set by @see self::maybe_schedule_cleanup().
Метод класса: ActionScheduler_WPCommentCleaner{}
Хуков нет.
Возвращает
true|false
. Whether there are scheduled action comments in the comments table.
Использование
$result = ActionScheduler_WPCommentCleaner::has_logs();
Код ActionScheduler_WPCommentCleaner::has_logs() ActionScheduler WPCommentCleaner::has logs WC 9.2.3
public static function has_logs() { return 'yes' === get_option( self::$has_logs_option_key ); }