'general_config', 'name' => __('General', 'cpotheme'), 'desc' => __('Global configuration options applied to the entire site.', 'cpotheme'), 'type' => 'separator'); if(function_exists('cpotheme_metadata_branding')) $cpotheme_config = array_merge($cpotheme_config, cpotheme_metadata_branding()); if(function_exists('cpotheme_metadata_management')) $cpotheme_config = array_merge($cpotheme_config, cpotheme_metadata_management()); if(function_exists('cpotheme_metadata_customization')) $cpotheme_config = array_merge($cpotheme_config, cpotheme_metadata_customization()); //LAYOUT TAB $cpotheme_config[] = array( 'id' => 'layout_config', 'name' => __('Layout', 'cpotheme'), 'desc' => __('Specify how you want the structure of the site to look.', 'cpotheme'), 'type' => 'separator'); //General layout options if(function_exists('cpotheme_metadata_layout')) $cpotheme_config = array_merge($cpotheme_config, cpotheme_metadata_layout()); /*$cpotheme_config[] = array( 'id' => 'header_opaque', 'name' => __('Enable Opaque Header', 'cpotheme'), 'desc' => __('Adds a light background to the header, so you can use a dark logo and typography.', 'cpotheme'), 'type' => 'yesno', 'std' => 0);*/ return $cpotheme_config; }