Skip to content

Instantly share code, notes, and snippets.

@mattradford
Created May 11, 2015 14:37
Show Gist options
  • Select an option

  • Save mattradford/380d32a1625bc70f3796 to your computer and use it in GitHub Desktop.

Select an option

Save mattradford/380d32a1625bc70f3796 to your computer and use it in GitHub Desktop.
woo Product categories in a dropdown (select)
<?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