Site logo

[Support request] Dropdown box listing select categories

Home Forums Support [Support request] Dropdown box listing select categories

Home Forums Support Dropdown box listing select categories

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #2259991
    Shrawan

    Hello support team,

    I’d like to create a dropdown box on the sidebar showing select categories. How can this be achieved easily, is there a plugin you would recommend?

    Thanks,
    S

    #2259996
    David
    Staff
    Customer Support

    Hi there,

    what would the Select Box do ? Would it take you to that category archive ?

    #2260000
    Shrawan

    Hi David, yes!

    #2260013
    David
    Staff
    Customer Support

    Theres the core Categories widget you can add to the Sidebar.
    If you’re using the Block Editor, then after adding the Categories block, click the 3 dot menu to display More Options, it has an option to display as Drop Down.

    #2260066
    Shrawan

    Hi David, is it possible to choose only select categories to show with this method? Don’t wish to show all categories.

    #2260242
    David
    Staff
    Customer Support

    Not 100% sure but the filter being used in the snippet below may still work:

    //Hide categories from WordPress category widget
    function exclude_widget_categories($args){
        $exclude = "1,4,8,57,80";
        $args["exclude"] = $exclude;
        return $args;
    }
    add_filter("widget_categories_args","exclude_widget_categories");

    Just change the $exclude = "1,4,8,57,80"; to contain the IDs of the categories you want to exclude.

    Reference to source: https://wordpress.stackexchange.com/a/253170

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.