I'm using wp_dropdown_categories() to output a dropdown.

In default view (without having clicked it) it shows the name of the first category in the list. I'd like it to say "Categories". Is this possible?

Thanks in advance

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can use the show_option_all argument:

<?php $args = array(
'show_option_all'    => 'Categories'
);
wp_dropdown_categories( $args );
?>

Function Reference/wp dropdown categories

link|improve this answer
Thanks I got it. – gowri Jun 24 '11 at 14:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.