kalponikoronno

meta box

Sep 1st, 2014
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.69 KB | None | 0 0
  1. <?php
  2. function _custom_meta_boxes() {
  3. /*copy here*/
  4.   $portfolio_meta_box = array(
  5.     'id'          => 'portfolio_meta_box',
  6.     'title'       => 'Portfolio Information',
  7.     'desc'        => '',
  8.     'pages'       => array( 'portfolio-items' ),
  9.     'context'     => 'normal',
  10.     'priority'    => 'high',
  11.     'fields'      => array(
  12.       array(
  13.         'label'       => 'Upload large image',
  14.         'id'          => 'large_image',
  15.         'type'        => 'upload',
  16.         'desc'        => 'Upload portfolio large image, this will go on iframe. Best size for image is 800px width and 600px height'
  17.       )
  18.     )
  19.   );
  20.   ot_register_meta_box( $portfolio_meta_box );  
  21. /*to here*/
  22. }
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment