esc_like( $_REQUEST['q'] ) : ''; $forms = automatorwp_arforms_get_forms( ); $results = array(); // Parse form results to match select2 results foreach ( $forms as $form ) { if( ! empty( $search ) ) { if( strpos( strtolower( $form['name'] ), strtolower( $search ) ) === false ) { continue; } } $results[] = array( 'id' => $form['id'], 'text' => $form['name'] ); } // Prepend option none $results = automatorwp_ajax_parse_extra_options( $results ); // Return our results wp_send_json_success( $results ); die; } add_action( 'wp_ajax_automatorwp_arforms_get_forms', 'automatorwp_arforms_ajax_get_forms' );