Advertisement
Guest User

test-core.php

a guest
Jun 19th, 2014
189,752
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  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. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement