WordPress – Show selected category from drop down

I’m trying to show a list of my categories in a drop down on WordPress using:

<?php wp_dropdown_categories( $args ); ?>

But using jQuery i’m trying to make the page display all categories, then when one is selected from the drop down menu hide all but the selected category.

Read More

Does anyone have an ideas?

Related posts

Leave a Reply

1 comment

  1. Try this one:

    <?php   
        $arr = get_categories();
        echo "<select name='categorylist'>";
        foreach($arr as $option){
            echo "<option value='{$option}'>{$option->name}</option>";   
        }
        echo "</select>";
    ?>
    

    Thanks.