InterviewSolution
| 1. |
How to display menu in WordPress? |
|
Answer» After registering your menus, USE wp_nav_menu() to inform your theme where to display your menus. You can ADD this code to a header.php file for displaying the REGISTERED header-menu: wp_nav_menu( array $args = array( |
|