Advertisement
Guest User

plugin main file

a guest
Jun 18th, 2012
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php
  2.  
  3. define( 'PLUGIN_DIR', dirname(__FILE__).'/' );  
  4.  
  5. if ( is_admin() ){ //run only in WP admin area
  6.  
  7. function verkoopstatus_admin_page() {
  8.    add_menu_page('Beheer verkoopstatus', 'Verkoopstatus', 'manage_options', 'Verkoopstatus', 'showHome', plugins_url('verkoopstatus/images/verkoopstatus-icon-2.png'), 99);
  9. }
  10.     include_once( plugin_dir_path( __FILE__ ) . 'verkoopstatus2.php');
  11.    
  12.     add_action( 'admin_menu' , 'verkoopstatus_admin_page' );
  13. }
  14.  
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement