Advertisement
verygoodplugins

Untitled

Sep 13th, 2019
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. function wpf_batch_gforms_init() {
  2.  
  3.     $search_criteria = array(
  4.         'field_filters' => array(
  5.             array(
  6.                 'key'      => 'wpf_complete',
  7.                 'value'    => '1',
  8.                 'operator' => '!=',
  9.             ),
  10.         ),
  11.     );
  12.  
  13.     $form_ids = array( 1, 3, 5 );
  14.  
  15.     $entry_ids = GFAPI::get_entry_ids( $form_ids, $search_criteria );
  16.  
  17.     return $entry_ids;
  18.  
  19. }
  20.  
  21. add_filter( 'wpf_batch_gravity_forms_init', 'wpf_batch_gforms_init', 20 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement