Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. /*
  3. Plugin Name: Test plugin
  4. Description: A test plugin to demonstrate wordpress functionality
  5. Author: Simon Lissack
  6. Version: 0.1
  7. */
  8. add_action('admin_menu', 'test_plugin_setup_menu');
  9.  
  10. function test_plugin_setup_menu(){
  11.     add_menu_page( 'Test Plugin Page', 'Test Plugin', 'manage_options', 'test-plugin', 'test_init' );
  12. }
  13.  
  14. function test_init(){
  15.     echo "<h1>Hello World!</h1>";
  16. }
  17.  
  18. ?>