HEX
Server: Apache
System: Linux webd001.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: mciraet (192513)
PHP: 8.2.31
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/mciraet/www/wp-content/plugins/bulk-delete/include/Deprecated/class-bulk-delete-post-meta.php
<?php

use BulkWP\BulkDelete\Core\Metas\Modules\DeletePostMetaModule;

defined( 'ABSPATH' ) || exit; // Exit if accessed directly.

/**
 * Utility class for deleting Post Meta.
 *
 * All the methods from this class has been migrated to `DeletePostMetaModule` class.
 * This class is still present for backward compatibility purpose, since some of the old add-ons still depend on this class.
 *
 * @since 5.4
 * @since 6.0.0 Deprecated.
 */
class Bulk_Delete_Post_Meta {
	/**
	 * Cron Hook.
	 *
	 * @since 5.4
	 */
	const CRON_HOOK = 'do-bulk-delete-post-meta';

	/**
	 * Delete Post Meta.
	 *
	 * @static
	 *
	 * @since  5.4
	 * @since  6.0.0 Deprecated.
	 *
	 * @param array $delete_options Options for deleting.
	 *
	 * @return int Number of posts that were deleted
	 */
	public static function delete_post_meta( $delete_options ) {
		$module = new DeletePostMetaModule();

		return $module->delete( $delete_options );
	}
}