reenadak

WordPress plugin sample

Jul 31st, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4. Plugin Name : My First WordPress Plugin
  5. Plugin URI : http://phpscripts.in/my_first_wordpress_plugin
  6. Description : A simple plugin for doemonstration
  7. Version : 1.0
  8. Author : Mukesh Dak
  9. Author URI : http://mukeshdak.com
  10. License : GPL
  11. */
  12.  
  13. function my_plugin1_menu()
  14. {
  15. add_menu_page(
  16. 'My Plugin1',
  17. // Page title
  18. 'My Plugin1',
  19. // Menu title
  20. 'administrator',
  21. // Capability ( below this it will not be shown )
  22. 'my_plugin1',
  23. // menu_slug ( handle ), must of unique
  24. 'create_my_plugin1_page'
  25. // This function will be executed when menu is accessed.
  26. );
  27. }
  28.  
  29. function create_my_plugin1_page()
  30. {
  31. echo "This is My Plugin1 page";
  32. }
  33.  
  34. /* create this menu in Admin */
  35. add_action('admin_menu', 'my_plugin1_menu');
  36.  
  37. ?>
Advertisement
Add Comment
Please, Sign In to add comment