ActionScheduler_WPCommentCleaner::delete_all_action_comments
Delete all action comments from the WP Comments table.
Method of the class: ActionScheduler_WPCommentCleaner{}
No Hooks.
Returns
null. Nothing (null).
Usage
$result = ActionScheduler_WPCommentCleaner::delete_all_action_comments();
ActionScheduler_WPCommentCleaner::delete_all_action_comments() ActionScheduler WPCommentCleaner::delete all action comments code WC 10.8.1
public static function delete_all_action_comments() {
global $wpdb;
$wpdb->delete(
$wpdb->comments,
array(
'comment_type' => ActionScheduler_wpCommentLogger::TYPE,
'comment_agent' => ActionScheduler_wpCommentLogger::AGENT,
)
);
update_option( self::$has_logs_option_key, 'no', true );
}