¿Desea crear un menú de administración personalizado con 2 submenús? Los menús de administración son útiles para los sitios de membresía cuando tiene varios usuarios que se registran en su sitio web. Hemos creado un fragmento de código rápido que puede utilizar para crear add_menu_page
personalizado y add_submenu_page
panel de administración en WordPress.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo functions.php de tu tema o en un plugin específico del sitio:
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>'; }
Nota: Si es la primera vez que añades fragmentos de código en WordPress, consulta nuestra guía sobre cómo añadir correctamente fragmentos de código en WordPress, para no romper accidentalmente tu sitio.
Si le gustó este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: 25 mejores plugins de WooCommerce para hacer crecer tus ventas rápidamente y cómo crear un formulario de solicitud de empleo en WordPress.
thanks its work !
very simple and clear, thanks
Thanks! God Bless You
worked! Thanks!
respect!Thankyou!
Thank you sir!
Millions of thanks
+1, translate to Spanish and refered you
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
Nice man! Simple and direct, 2 hours searching this solution in google and nothing lol
You is the dude haha
Glad to see you found us 🙂 make sure you bookmark wpsnipp we have more than just
add_menu_page and add_submenu_page… Enjoy!
Nice man! Simple and direct, 2 hours searching this solution in google and nothing lol
You is the dude haha
Nice man! Simple and direct, 2 hours searching this solution in google and nothing lol
You is the dude haha
Nice man! Simple and direct, 2 hours searching this solution in google and nothing lol
You is the dude haha
Nice man! Simple and direct, 2 hours searching this solution in google and nothing lol
You is the dude haha
Nice man! Simple and direct, 2 hours searching this solution in google and nothing lol
You is the dude haha
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
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.
Ok thankyou, I’ll try the foother thing.
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
Thanks
Thanks very much m searching this code from the one day. thanx alot…..
its working well thanks
thanks very much its working….
Thanks, it helped a lot!
Cool glad to hear it!