I have this code that gets post by tags from a category and i want it to show them in a dropdown menu and not just a very long list.
can anybody tell me how to do that?
here is what i want to show in a dropdown menu
<?php
$args = array( 'categories' => '1' ); $tags = get_category_tags($args);
$content .= "<ul>"; foreach ($tags as $tag) { $content .= "<li><a href=\"$tag->tag_link\">$tag->tag_name</a></li>"; } $content .= "</ul>"; echo $content;
?>