How to Create a Dropdown menu in Thesis Sidebar? - php

I have an issue with Thesis Wordpress theme. I want to create a dropdown menu for my categories and archives in the sidebar, not the navigation menu.
If anyone knows how or can point me to a website where this is explained I will be grateful.

I dont't have the thesis theme but showing a dropdown for categories or archives is a standard WordPress Plugin. Just select them from the widgets page within your backend.

Related

How do I create a category filter like this in wordpress

How do I create a dropdown for categories on the right sidebar in wordpress. I looked at some tutorials but all of them shows how to create a menu with dropdown that goes in the header.
I want the category filter to be like this specifically in the sidebar. Does this require extra plugin or can be done in the wordpress itself?
Any help would be appreciated. The wordpress theme is Hueman.
I figured it out. In case anyone else wants to know. Here's how:
Install the classic widgets plugin
Drag the categories to your widget area

How to add custom navigation sidebar in wordpress

I want to create a tutorial site like https://www.runoob.com/ by using wordpress. I want to create some pages, for example /java , and some subpages, for example /java/java-tutorial and /java/java-intro .
I want to show a navigation sidebar in each of these subpages. I want the sidebar list all links of the subpages. How to do it?
Thanks!
Add a Navigation Menu to Sidebar in WordPress
You can easily add navigation menu in your WordPress website using the WordPress dashboard. Login to your WordPress website and go to dashboard then-
Go to Appearance > Widgets
Under available widget area find your navigation menu you want to add.
Drag and drop the menu into main sidebar widgets area
Add a name of the menu and select from the drop-down where you want to use it.
Create a custom sidebar for WordPress website
There are a lots of plugins available for custom sidebar navigation menu. Here in this tutorial we are using Custom Sidebars — Dynamic Widget Area Manager plugin to create our custom sidebar for specific pages. This plugin offers you so many customization options. With the help of this plugins you can create multiple sidebar for multiple pages.
Download this plugin from WordPress plugin page and activate it. after activating the plugin go to your dashboard and then Appearance > Widgets. If the plugin is running successfully then you will able to see the option Create a new sidebar
From this page you can choose a name of your sidebar and add some description about it. If you want to create multiple sidebar then you should give a related name for each sidebar so that you can easily understand that which sidebar for which purpose. You can see all of your sidebar in custom sidebar section
Now from the Available Widgets area you need to drag and drop element you want to display in your sidebar.
For better understanding you can follow this article

Using Flexnav on a custom wordpress theme

Hi I'm creating my own theme on wordpress and have been running into difficulty creating a dynamic menu. I want to use the flexnav menu (http://jasonweaver.name/lab/flexiblenavigation/), which I can display through a static site but when trying to implement it through wordpress I can not display the sub menus and dropdown class elements, can anyone help or has anyone had the same problem with dropdown menus?

How to create submenu/drop down menu in wordpress 3.8.1 Bizway theme

Is the anyone who can help me with creating submenus for my wordpress site?
I want the Menu structure to be like this and to be a dropdown list menu:
Home
About Us
Products
L'Oreal Products
Eco Kids Products
Bonacure Products
Services
Gallery
Awards
Contact Us
Am still new to wordpress,please take it easy on me..;-)
Here is a link to the site:
http://hairimpressions.azurewebsites.net/
Thanks in advance for your help
First create page which you want to put as a sub menu then go to appearance>menu in that select page and add in to menu but just put under the main menu/or the page you want to create a submenu in...

How to list only english custom menus in a metabox alike the Custom Menu widget?

I'm currently developing a custom theme for Wordpress which also uses WPML. One of the features is a page independent "Quick navigation menu" that resides in the sidebar of pages.
My approach is to use custom menus (Appearance->Menus) for this. On Edit Page screens I want to include a metabox with a dropdown for selecting the right menu. Creating the metabox is easy:
function page_menus_meta(){
add_meta_box('page_menusid', 'Quick navigation menu', 'page_menus_metabox', 'page', 'normal', 'high');
}
add_action( 'add_meta_boxes', 'page_menus_meta' );
The problem is in displaying the available menus. It must be possible, since the widget "Custom Menu" exists and does exactly that. But when I list all menus I also get the menus translated by WPML which I do not want. I use..
$menus = get_terms('nav_menu');
..for displaying the menus.
My question: How do I list all english-only menus alike the Custom Menu widget?
Subquestion: If someone knows where the code for the Custom Menu resides in the WordPress core I might figure it out myself. Can't seem to find the file though..

Categories