Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function custom_meta_boxes() {
- /* copy here*/
- $link_meta_box = array(
- 'id' => 'link_meta_box',
- 'title' => __( 'Link' ),
- 'desc' => '',
- 'pages' => array( 'singpost', 'singpost_two', 'ssite', 'mvsite', 'torrentsite', 'livetvsite', 'ecommercesite', 'webdgsite', 'webdgrltdsite', 'moviesubtitle', 'pplrblog', 'frlancing' ),
- 'context' => 'normal',
- 'priority' => 'high',
- 'fields' => array(
- array(
- 'label' => __( 'Edit Your Link' ),
- 'id' => 'bookmark_link',
- 'type' => 'text'
- )
- )
- );
- /* to here*/
- if ( function_exists( 'ot_register_meta_box' ) )
- ot_register_meta_box( $link_meta_box );
- }
Advertisement
Add Comment
Please, Sign In to add comment