You can use a Custom HTML widget with the following code if you want it to redirect to a URL when an option is selected from the dropdown
<select onchange="location = this.value;">
<option selected>Choose an option...</option>
<option value="http://example.com">1</option>
<option value="http://example.com">2</option>
<option value="http://example.com">3</option>
</select>
Just change the URLs to what you want them to redirect to and then 1/2/3 to the values you want displayed in the dropdown
Hi,
I did what you suggested to me, but that’s not really what I was looking for. I guess I didn’t explain myself correctly. When I say sidebar menu, I mean hamburguer menu. I’d like to add drop-down lists in the hamburguer menu.
Thank you!!!
Hi
Sidebar Menu section does not support multi level menu. however you can use child theme and customize theme code accordingly.
Thanks