Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $meta_boxes[] = array(
- 'title' => __('Right Box', 'x2-backend'),
- 'pages' => array('page'),
- 'context' => 'normal', // Where the meta box appear: normal (default), advanced, side. Optional.
- 'id' => 'ct_page_rightbox_options',
- 'show_on' => array( 'key' => 'page-template', 'value' => array('tpl-location.php') ),
- 'fields' => array(
- array(
- 'name' => __('Right box Title', 'x2-backend'),
- 'id' => "{$prefix}rightbox_title",
- 'type' => 'text',
- ),
- array(
- 'name' => __('Right box Content', 'x2-backend'),
- 'id' => "{$prefix}rightbox_content",
- 'type' => 'wysiwyg',
- 'raw' => false,
- 'options' => array(
- 'textarea_rows' => 4,
- ),
- ),
- array(
- 'name' => __('Right box cta text', 'x2-backend'),
- 'id' => "{$prefix}rightbox_cta_text",
- 'type' => 'text',
- ),
- array(
- 'name' => __('Right box cta link', 'x2-backend'),
- 'id' => "{$prefix}rightbox_cta_link",
- 'type' => 'text',
- ),
- array(
- 'name' => __('Right box cta target', 'x2-backend'),
- 'id' => "{$prefix}rightbox_cta_target",
- 'type' => 'select',
- 'options' => array(
- '_parent' => 'Parent',
- '_blank' => 'Blank',
- ),
- ),
- )
- );
- $meta_boxes[] = array(
- 'title' => __('Bottom Content', 'x2-backend'),
- 'pages' => array('page'),
- 'context' => 'normal', // Where the meta box appear: normal (default), advanced, side. Optional.
- 'id' => 'ct_page_btm_content_options',
- 'show_on' => array( 'key' => 'page-template', 'value' => array('tpl-location.php') ),
- 'fields' => array(
- array(
- 'name' => __('Right box Title', 'x5-backend'),
- 'id' => "{$prefix}btm_content_title",
- 'type' => 'text',
- ),
- array(
- 'name' => __('Right box Content', 'x5-backend'),
- 'id' => "{$prefix}btm_content_content",
- 'type' => 'wysiwyg',
- 'raw' => false,
- 'options' => array(
- 'textarea_rows' => 8,
- ),
- ),
- )
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement