ActionScheduler_WPCommentCleaner::delete_all_action_comments()public staticWC 1.0

Delete all action comments from the WP Comments table.

Method of the class: ActionScheduler_WPCommentCleaner{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = ActionScheduler_WPCommentCleaner::delete_all_action_comments();

ActionScheduler_WPCommentCleaner::delete_all_action_comments() code WC 9.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 );
}