Skip to content

Instantly share code, notes, and snippets.

@tripflex
Created July 1, 2022 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tripflex/d78e60f072cebffef09b7e25337dfdbe to your computer and use it in GitHub Desktop.
Save tripflex/d78e60f072cebffef09b7e25337dfdbe to your computer and use it in GitHub Desktop.
Lower total per batch when using empty meta cleaner cleanup existing empty post meta
<?php
add_filter( 'job_manager_empty_meta_cleaner_init_configuration', 'smyles_emc_lower_per_batch' );
function smyles_emc_lower_per_batch( $config ){
$config['total_per_batch'] = 10;
return $config;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment