border: 1px solid black !important;}
In a recent version of WordPress, they added Custom Menus under Appearance for you to create a custom menu for your site. Most people think this is for the header area, but it can be used in the sidebar or footer as well.
In order for these to work, you must have the custom menus enabled in your WordPress Theme. If your WordPress Theme is enabled, a sidebar container will appear in the Widget panel.
If it doesn’t exist, you can add the following to the functions.php
:
add_theme_support( 'menus' );
Once the custom menus are enabled, you need to include the code in the theme where you want the feature to appear using the template tag.
Previous Next
.