'layout_sidebar', 'label' => __( 'Sidebar Position', 'allegiant' ), 'desc' => __( 'Determines the location of the sidebar by default.', 'allegiant' ), 'type' => 'imagelist', 'option' => cpotheme_metadata_sidebarposition(), 'std' => 'default', ); return apply_filters( 'cpotheme_metadata_layout', $cpotheme_data ); } //Create feature meta fields function cpotheme_metadata_feature_options() { $cpotheme_data = array(); $cpotheme_data['feature_icon'] = array( 'name' => 'feature_icon', 'std' => '', 'label' => __( 'Feature Icon', 'allegiant' ), 'desc' => __( 'Sets an icon to be used as the featured element.', 'allegiant' ), 'type' => 'iconlist', ); return apply_filters( 'cpotheme_metadata_feature', $cpotheme_data ); } //Create portfolio meta fields function cpotheme_metadata_portfolio_options() { $cpotheme_data = array(); $cpotheme_data['portfolio_featured'] = array( 'name' => 'portfolio_featured', 'std' => '', 'label' => __( 'Featured Item', 'allegiant' ), 'desc' => __( 'Specifies whether this item appears in the homepage.', 'allegiant' ), 'type' => 'yesno', ); return apply_filters( 'cpotheme_metadata_portfolio', $cpotheme_data ); } //Create product meta fields function cpotheme_metadata_product_options() { $cpotheme_data = array(); $cpotheme_data['product_featured'] = array( 'name' => 'product_featured', 'std' => '', 'label' => __( 'Featured Item', 'allegiant' ), 'desc' => __( 'Specifies whether this item appears in the homepage.', 'allegiant' ), 'type' => 'yesno', ); return apply_filters( 'cpotheme_metadata_product', $cpotheme_data ); } //Create service meta fields function cpotheme_metadata_service_options() { $cpotheme_data = array(); $cpotheme_data['service_featured'] = array( 'name' => 'service_featured', 'std' => '', 'label' => __( 'Featured Item', 'allegiant' ), 'desc' => __( 'Specifies whether this item appears in the homepage.', 'allegiant' ), 'type' => 'yesno', ); $cpotheme_data['service_icon'] = array( 'name' => 'service_icon', 'std' => '', 'label' => __( 'Service Icon', 'allegiant' ), 'desc' => __( 'Sets an icon to be used as the service preview.', 'allegiant' ), 'type' => 'iconlist', ); return apply_filters( 'cpotheme_metadata_service', $cpotheme_data ); } //Create team meta fields function cpotheme_metadata_team_options() { $data = array(); $data['team_featured'] = array( 'name' => 'team_featured', 'std' => '', 'label' => __( 'Featured Member', 'allegiant' ), 'desc' => __( 'Specifies whether this member appears in the homepage.', 'allegiant' ), 'type' => 'yesno', ); return apply_filters( 'cpotheme_metadata_team', $data ); } //Create page meta fields function cpotheme_metadata_page_options() { $data = array(); $data['page_featured'] = array( 'name' => 'page_featured', 'std' => '', 'label' => __( 'Show In Homepage', 'allegiant' ), 'desc' => __( 'Specifies whether this item is featured in the homepage.', 'allegiant' ), 'type' => 'select', 'option' => cpotheme_metadata_featured_page(), ); return apply_filters( 'cpotheme_metadata_page', $data ); }