X

Créer une page add_menu personnalisée avec le panneau d’administration add_submenu_page

Snippets by IsItWP

Voulez-vous créer un menu administrateur personnalisé avec 2 sous-menus ? Les menus d’administration sont utiles pour les sites d’adhésion lorsque plusieurs utilisateurs s’inscrivent sur votre site web. Nous avons créé un extrait de code rapide que vous pouvez utiliser pour créer un panneau d’administration personnalisé add_menu_page et add_submenu_page dans WordPress.

Instructions:

Tout ce que vous avez à faire est d’ajouter ce code dans le fichier functions.php de votre thème ou dans un plugin spécifique à votre site:

 
function theme_options_panel(){
  add_menu_page('Theme page title', 'Theme menu label', 'manage_options', 'theme-options', 'wps_theme_func');
  add_submenu_page( 'theme-options', 'Settings page title', 'Settings menu label', 'manage_options', 'theme-op-settings', 'wps_theme_func_settings');
  add_submenu_page( 'theme-options', 'FAQ page title', 'FAQ menu label', 'manage_options', 'theme-op-faq', 'wps_theme_func_faq');
}
add_action('admin_menu', 'theme_options_panel');

function wps_theme_func(){
		echo '<div class="wrap"><div id="icon-options-general" class="icon32"><br></div>
		<h2>Theme</h2></div>';
}
function wps_theme_func_settings(){
		echo '<div class="wrap"><div id="icon-options-general" class="icon32"><br></div>
		<h2>Settings</h2></div>';
}
function wps_theme_func_faq(){
		echo '<div class="wrap"><div id="icon-options-general" class="icon32"><br></div>
		<h2>FAQ</h2></div>';
}

Note : Si c’est la première fois que vous ajoutez des extraits de code dans WordPress, veuillez consulter notre guide sur la façon d’ajouter correctement des extraits de code dans WordPress, afin de ne pas casser accidentellement votre site.

Si vous avez aimé cet extrait de code, n’hésitez pas à consulter nos autres articles sur le site comme : 25 meilleurs plugins WooCommerce pour augmenter vos ventes rapidement et comment créer un formulaire de demande d’emploi sur WordPress.

Commentaires   laisser une réponse

  1. thanks its work !

  2. very simple and clear, thanks

  3. Jailson Pacagnan Santana avril 27, 2020 à 8:47 pm

    Thanks! God Bless You

  4. worked! Thanks!

  5. respect!Thankyou!

  6. Savanolka Gardouchtra mai 30, 2019 à 4:39 am

    Thank you sir!

  7. Akhtarujjaman Shuvo mars 22, 2019 à 2:58 pm

    Millions of thanks

  8. Luis Miguel Devloper juin 16, 2015 à 4:51 pm

    +1, translate to Spanish and refered you

  9. Excellent, very good. Thanks for you help. I have a question, how can visuality this menu at the rol “invitador” ? for example:

    $result = add_role( ‘invitador’, __(‘Invitador’ ),array(

    ‘theme_options_panel’ => true,

    )); ??

    Thanks my friend

  10. grupobrasilonline mai 2, 2014 à 4:58 am

    Nice man! Simple and direct, 2 hours searching this solution in google and nothing lol

    You is the dude haha

    1. Glad to see you found us 🙂 make sure you bookmark wpsnipp we have more than just

      add_menu_page and add_submenu_page… Enjoy!

  11. grupobrasilonline mai 2, 2014 à 4:58 am

    Nice man! Simple and direct, 2 hours searching this solution in google and nothing lol

    You is the dude haha

  12. grupobrasilonline mai 2, 2014 à 4:58 am

    Nice man! Simple and direct, 2 hours searching this solution in google and nothing lol

    You is the dude haha

  13. grupobrasilonline mai 2, 2014 à 4:58 am

    Nice man! Simple and direct, 2 hours searching this solution in google and nothing lol

    You is the dude haha

  14. grupobrasilonline mai 2, 2014 à 4:58 am

    Nice man! Simple and direct, 2 hours searching this solution in google and nothing lol

    You is the dude haha

  15. grupobrasilonline mai 2, 2014 à 4:58 am

    Nice man! Simple and direct, 2 hours searching this solution in google and nothing lol

    You is the dude haha

  16. Is it posible to add a top level item with current user info (avatar, username, first and last name, something like the top right user info pannel in the admin bar. I want to do this because i didnt find any solution for front end posting that fits all my needs so Ill let user post fron the backoffice but I want to make a really cool experience by adding some cool stuff in the admin area. Heres and example https://dl.dropboxusercontent.com/u/12646264/example-user-info-pannel.jpg

    1. Hi Aeonx,

      I don’t think so as add_menu_page would only except specific parameters. The only thing I could think of would be to try and add HTML within the title. The problem is that would be placed within an anchor. The other option would be to insert something into the footer of the admin then use javascript to remove and place it into the admin menu after the fact. Keep in mind this is not something I have looked into so may be an easier way.

      1. Alberto Hartzet mars 12, 2014 à 10:00 am

        Ok thankyou, I’ll try the foother thing.

  17. Is it posible to add a top level item with current user info (avatar, username, first and last name, something like the top right user info pannel in the admin bar. I want to do this because i didnt find any solution for front end posting that fits all my needs so Ill let user post fron the backoffice but I want to make a really cool experience by adding some cool stuff in the admin area. Heres and example https://dl.dropboxusercontent.com/u/12646264/example-user-info-pannel.jpg

  18. Thanks

  19. Thanks very much m searching this code from the one day. thanx alot…..

  20. php developer juin 28, 2013 à 3:35 am

    its working well thanks

  21. php developer juin 28, 2013 à 3:33 am

    thanks very much its working….

  22. Thanks, it helped a lot!

    1. Cool glad to hear it!

Ajouter un commentaire

Nous sommes heureux que vous ayez choisi de laisser un commentaire. N'oubliez pas que tous les commentaires sont modérés conformément à notre privacy policy, et que tous les liens sont en nofollow. N'utilisez PAS de mots-clés dans le champ du nom. Engageons une conversation personnelle et constructive.

WordPress Launch Checklist

L'ultime liste de contrôle pour le lancement de WordPress

Nous avons rassemblé tous les éléments essentiels de la liste de contrôle pour le lancement de votre prochain site Web WordPress dans un ebook pratique.
Oui, envoyez-moi le gratuit !