__( 'Page or Post Settings', 'trifold' ), 'context' => 'normal', 'priority' => 'high', 'post_types' => array( 'page', 'post' ), 'fields' => array( array( 'name' => _x( 'Sidebar Position', 'backend metabox', 'trifold' ), 'id' => $prefix . 'meta_layout_content', 'type' => 'image_select', 'options' => array( 'default' => $url . 'default.png', 'two-col-left' => $url . '2cl.png', 'one-col' => $url . '1c.png', 'two-col-right' => $url . '2cr.png' ), 'std' => 'default' ), array( 'name' => _x( 'Page Title', 'backend metabox', 'trifold' ), 'id' => $prefix . 'page_title_setting', 'type' => 'image_select', 'options' => array( 'hide' => $url . 'title-hide.png', 'show' => $url . 'title-standard.png', 'fancy' => $url . 'title-fancy.png', ), 'std' => 'show' ), // Fancy text color array( 'name' => _x( 'Text Color', 'backend metabox', 'trifold' ), 'id' => $prefix . 'txt_color_fancy_title', 'type' => 'color' ), // Fancy background color array( 'name' => _x( 'Background Color', 'backend metabox', 'trifold' ), 'id' => $prefix . 'bg_color_fancy_title', 'type' => 'color' ), // Fancy Image Upload array( 'name' => _x( 'Background Image', 'backend metabox', 'trifold' ), 'id' => $prefix . 'bg_image_fancy_title', 'type' => 'image_advanced', 'max_file_uploads' => 1 ), ) ); return $meta_boxes; } }