toggle menu

Select dropdown list of taxonomy in wordpress

Dhananjay Kumar |28 Apr at 07:04

Hello,
I have simple need to show a dropdown list of all taxonomy (for tag & category) of prodcut post type of woocommerce.
We have used below script & ite working fine for me.
<?php
$terms_result = get_terms("taxonomy_name");
$slected='';
    echo '<select name="fld_name">';
        echo '<option value="">Select Option</option>';
        foreach( $terms_result as $k => $v )
        {
            $vslag=$v->slug;
            $vname=$v->name;
         
            echo '<option value="' . $vslag . '"  >' . $vname. '</option>';
        }
    echo '</select>';

?>

  • 1 like
  • 0 comment

Posted:

28 Apr at 07:04

Viewed:

859 times

Active:

28 Apr at 07:04