esc_like( $_REQUEST['q'] ) : ''; $snippets = automatorwp_wpcode_get_snippets( ); $results = array(); // Parse snippet results to match select2 results foreach ( $snippets as $snippet ) { if( ! empty( $search ) ) { if( strpos( strtolower( $snippet['name'] ), strtolower( $search ) ) === false ) { continue; } } $results[] = array( 'id' => $snippet['id'], 'text' => $snippet['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_wpcode_get_snippets', 'automatorwp_wpcode_ajax_get_snippets' );