search in wordpress code example
Example: search on taxonomy wordpress query
function get_tax_by_search($search_text){
$args = array(
'taxonomy' => array( 'my_tax' ),
'orderby' => 'id',
'order' => 'ASC',
'hide_empty' => true,
'fields' => 'all',
'name__like' => $search_text
);
$terms = get_terms( $args );
$count = count($terms);
if($count > 0){
echo "<ul>";
foreach ($terms as $term) {
echo "<li><a href='".get_term_link( $term )."'>".$term->name."</a></li>";
}
echo "</ul>";
}
}
get_tax_by_search('Foo');