kalponikoronno

meta box theme option

Dec 26th, 2014
783
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.74 KB | None | 0 0
  1. function custom_meta_boxes() {
  2.  
  3. /* copy here*/
  4.   $link_meta_box = array(
  5.     'id'          => 'link_meta_box',
  6.     'title'       => __( 'Link' ),
  7.     'desc'        => '',
  8.     'pages'       => array( 'singpost', 'singpost_two', 'ssite', 'mvsite', 'torrentsite', 'livetvsite', 'ecommercesite', 'webdgsite', 'webdgrltdsite', 'moviesubtitle', 'pplrblog', 'frlancing' ),
  9.     'context'     => 'normal',
  10.     'priority'    => 'high',
  11.     'fields'      => array(
  12.       array(
  13.         'label'       => __( 'Edit Your Link' ),
  14.         'id'          => 'bookmark_link',
  15.         'type'        => 'text'
  16.       )
  17.     )
  18.   );
  19.  
  20. /* to here*/
  21.    
  22.    
  23.   if ( function_exists( 'ot_register_meta_box' ) )
  24.     ot_register_meta_box( $link_meta_box );
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment