Created
May 11, 2015 14:37
-
-
Save mattradford/380d32a1625bc70f3796 to your computer and use it in GitHub Desktop.
woo Product categories in a dropdown (select)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $terms = get_terms( 'product_cat' ); | |
| echo '<select class="product-category-list">'; | |
| foreach ( $terms as $term ) { | |
| $term_link = get_term_link( $term ); | |
| if ( is_wp_error( $term_link ) ) { | |
| continue; | |
| } ?> | |
| <option class="product-category-list-item"> | |
| <?php echo $term->name; ?> | |
| <!-- <a href="<?php echo esc_url( $term_link ); ?>"></a>--> | |
| </option> | |
| <?php } | |
| echo '</select>'; | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment