Theme menu in Admin Panel
Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;
up vote
1
down vote
favorite
I am new in WordPress Development. How can I get Menus
in Admin Panel like below ?
I am trying to develop a theme. But I couldn't display that.
menus wp-admin admin-menu
add a comment |Â
up vote
1
down vote
favorite
I am new in WordPress Development. How can I get Menus
in Admin Panel like below ?
I am trying to develop a theme. But I couldn't display that.
menus wp-admin admin-menu
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I am new in WordPress Development. How can I get Menus
in Admin Panel like below ?
I am trying to develop a theme. But I couldn't display that.
menus wp-admin admin-menu
I am new in WordPress Development. How can I get Menus
in Admin Panel like below ?
I am trying to develop a theme. But I couldn't display that.
menus wp-admin admin-menu
asked Aug 12 at 9:47
abu abu
1204
1204
add a comment |Â
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
3
down vote
accepted
You need to register custom menus in your theme - https://codex.wordpress.org/Function_Reference/register_nav_menu
You first need to register your menu in functions.php like so:
add_action( 'after_setup_theme', 'register_my_menu' );
function register_my_menu()
register_nav_menu( 'primary', __( 'Primary Menu', 'theme-slug' ) );
Then, where you want your menu to appear - usually header.php - you call the function:
wp_nav_menu()
add a comment |Â
up vote
2
down vote
You can refer to this link for more information.
Basically, for Menus to show up, you need to use the WordPress function register_nav_menu()
to register that your theme supports at least 1 menu. Each registered menu corresponds to a checkbox under the Display location (which is under the Menu Settings header) section at the bottom of the Menu page.
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
You need to register custom menus in your theme - https://codex.wordpress.org/Function_Reference/register_nav_menu
You first need to register your menu in functions.php like so:
add_action( 'after_setup_theme', 'register_my_menu' );
function register_my_menu()
register_nav_menu( 'primary', __( 'Primary Menu', 'theme-slug' ) );
Then, where you want your menu to appear - usually header.php - you call the function:
wp_nav_menu()
add a comment |Â
up vote
3
down vote
accepted
You need to register custom menus in your theme - https://codex.wordpress.org/Function_Reference/register_nav_menu
You first need to register your menu in functions.php like so:
add_action( 'after_setup_theme', 'register_my_menu' );
function register_my_menu()
register_nav_menu( 'primary', __( 'Primary Menu', 'theme-slug' ) );
Then, where you want your menu to appear - usually header.php - you call the function:
wp_nav_menu()
add a comment |Â
up vote
3
down vote
accepted
up vote
3
down vote
accepted
You need to register custom menus in your theme - https://codex.wordpress.org/Function_Reference/register_nav_menu
You first need to register your menu in functions.php like so:
add_action( 'after_setup_theme', 'register_my_menu' );
function register_my_menu()
register_nav_menu( 'primary', __( 'Primary Menu', 'theme-slug' ) );
Then, where you want your menu to appear - usually header.php - you call the function:
wp_nav_menu()
You need to register custom menus in your theme - https://codex.wordpress.org/Function_Reference/register_nav_menu
You first need to register your menu in functions.php like so:
add_action( 'after_setup_theme', 'register_my_menu' );
function register_my_menu()
register_nav_menu( 'primary', __( 'Primary Menu', 'theme-slug' ) );
Then, where you want your menu to appear - usually header.php - you call the function:
wp_nav_menu()
answered Aug 12 at 9:55


Will Chiswick
461
461
add a comment |Â
add a comment |Â
up vote
2
down vote
You can refer to this link for more information.
Basically, for Menus to show up, you need to use the WordPress function register_nav_menu()
to register that your theme supports at least 1 menu. Each registered menu corresponds to a checkbox under the Display location (which is under the Menu Settings header) section at the bottom of the Menu page.
add a comment |Â
up vote
2
down vote
You can refer to this link for more information.
Basically, for Menus to show up, you need to use the WordPress function register_nav_menu()
to register that your theme supports at least 1 menu. Each registered menu corresponds to a checkbox under the Display location (which is under the Menu Settings header) section at the bottom of the Menu page.
add a comment |Â
up vote
2
down vote
up vote
2
down vote
You can refer to this link for more information.
Basically, for Menus to show up, you need to use the WordPress function register_nav_menu()
to register that your theme supports at least 1 menu. Each registered menu corresponds to a checkbox under the Display location (which is under the Menu Settings header) section at the bottom of the Menu page.
You can refer to this link for more information.
Basically, for Menus to show up, you need to use the WordPress function register_nav_menu()
to register that your theme supports at least 1 menu. Each registered menu corresponds to a checkbox under the Display location (which is under the Menu Settings header) section at the bottom of the Menu page.
answered Aug 12 at 9:55
terresquall
785
785
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fwordpress.stackexchange.com%2fquestions%2f311199%2ftheme-menu-in-admin-panel%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password