milardovich

Custom meta box - Wordpress

Aug 9th, 2011
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1.     function ominid_blocks_inner_box(){
  2.         echo "Hello world";
  3.     }
  4.  
  5.     function ominid_blocks_add_custom_box(){
  6.         if(function_exists('add_meta_box')){
  7.             add_meta_box( 'ominid-blocks', 'Bloques', 'ominid_blocks_inner_box', 'page', 'normal', 'high' );
  8.         }
  9.     }
  10.  
  11.     add_action('admin_menu', 'ominid_blocks_add_custom_box');
Advertisement
Add Comment
Please, Sign In to add comment