Theme menu in Admin Panel

The name of the pictureThe name of the pictureThe name of the pictureClash 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 ?



enter image description here



I am trying to develop a theme. But I couldn't display that.



enter image description here







share|improve this question


























    up vote
    1
    down vote

    favorite












    I am new in WordPress Development. How can I get Menus in Admin Panel like below ?



    enter image description here



    I am trying to develop a theme. But I couldn't display that.



    enter image description here







    share|improve this question






















      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 ?



      enter image description here



      I am trying to develop a theme. But I couldn't display that.



      enter image description here







      share|improve this question












      I am new in WordPress Development. How can I get Menus in Admin Panel like below ?



      enter image description here



      I am trying to develop a theme. But I couldn't display that.



      enter image description here









      share|improve this question











      share|improve this question




      share|improve this question










      asked Aug 12 at 9:47









      abu abu

      1204




      1204




















          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()





          share|improve this answer



























            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.



            Display location menus






            share|improve this answer




















              Your Answer







              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "110"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              convertImagesToLinks: false,
              noModals: false,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













               

              draft saved


              draft discarded


















              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






























              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()





              share|improve this answer
























                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()





                share|improve this answer






















                  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()





                  share|improve this answer












                  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()






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Aug 12 at 9:55









                  Will Chiswick

                  461




                  461






















                      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.



                      Display location menus






                      share|improve this answer
























                        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.



                        Display location menus






                        share|improve this answer






















                          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.



                          Display location menus






                          share|improve this answer












                          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.



                          Display location menus







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Aug 12 at 9:55









                          terresquall

                          785




                          785



























                               

                              draft saved


                              draft discarded















































                               


                              draft saved


                              draft discarded














                              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













































































                              Comments

                              Popular posts from this blog

                              What does second last employer means? [closed]

                              List of Gilmore Girls characters

                              One-line joke