ajax_term_search_results

ajax_term_search_results

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('ajax_term_search_results') is found 1 times:

  • /wp-admin/includes/ajax-actions.php line 174
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
         * @param string[]    $results         Array of term names.
         * @param WP_Taxonomy $taxonomy_object The taxonomy object.
         * @param string      $search          The search term.
         */
        $results = apply_filters( 'ajax_term_search_results', $results, $taxonomy_object, $search );
     
        echo implode( "\n", $results );
        wp_die();
    }
     
    /**