mysql custom wp query

You could use the wp_dropdown_categories() function and pass post_tag as taxonomy parameter.

<?php wp_dropdown_categories( array( 'taxonomy' => 'post_tag' ) ); ?>

Leave a Comment