Advertisement
TBotNik

Submenu Test

Nov 16th, 2011
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. ο»Ώ<?php
  2. /***************************************************************************/
  3. /* Plugin Name: WPS Poll */
  4. /* URI: ../wp-content/plugins/wps-poll */
  5. /* Description: This plugin is a test plugin for learning purpose. */
  6. /* Version: 0.1 Author: Nyle Davis */
  7. /* Author URI: http://URI_Of_The_Plugin_Author */
  8. /* License: GPL2 - most WordPress plugins are released under GPL2 */
  9. /***************************************************************************/
  10.  
  11. function wps_poll_options_page () {
  12. ?>
  13. <div class=”wrap”>
  14. <h2>WPS Poll Admin</h2>
  15. <p>Here comes the options page content</p>
  16. </div>
  17. <?php
  18. }
  19.  
  20. function wps_poll_menu () {
  21. // Works
  22. add_menu_page('WPS Poll', __('WPS Poll'),'manage_options',basename(__FILE__), 'wps_poll_options_page');
  23. // Doesn't Work
  24. add_submenu_page('WPS Poll', __('WPS Poll'),'manage_options',basename(__FILE__), 'wps_poll_options_page');
  25. // Doesn't Work
  26. add_submenu_page('events-manager', __('WPS Poll'),'manage_options',basename(__FILE__), 'wps_poll_options_page');
  27. }
  28.  
  29. add_action('admin_menu','wps_poll_menu');
  30.  
  31. ?>
  32.  
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement