Advertisement
TBotNik

WPS Test code

Nov 16th, 2011
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 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. /*
  22. $plug_str = "'WPS Poll', __('WPS Poll'),__('WPS Poll'),'manage_options',".
  23. basename(__FILE__) . ", 'wps_poll_options_page'".
  24. add_menu_page($plug_str);
  25. */
  26. add_menu_page('WPS Poll', __('WPS Poll'),__('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