__( 'Enable( Featured Image )', 'business-center' ), '' => __( 'Default ( Customizer Header Image )', 'business-center' ), 'disable' => __( 'Disable', 'business-center' ), ); $output = apply_filters( 'business_center_header_image', $business_center_header_image ); return $output; } /** * Pagination * @return array site pagination options */ function business_center_pagination_options() { $business_center_pagination_options = array( 'numeric'=> __( 'Numeric', 'business-center' ), 'default'=> __( 'Default(Older/Newer)', 'business-center' ), ); $output = apply_filters( 'business_center_pagination_options', $business_center_pagination_options ); return $output; } /** * Slider * @return array slider options */ function business_center_enable_disable_options() { $business_center_enable_disable_options = array( 'static-frontpage' => __( 'Static Frontpage', 'business-center' ), 'disabled' => __( 'Disabled', 'business-center' ), ); $output = apply_filters( 'business_center_enable_disable_options', $business_center_enable_disable_options ); return $output; } /** * Default content type options * @return array Content type options */ function business_center_default_content_type_options() { $business_center_default_content_type_options = array( 'page' => __( 'Pages', 'business-center' ), ); $output = apply_filters( 'business_center_default_content_type_options', $business_center_default_content_type_options ); return $output; } /** * Transition effects * @return array Transition effects */ function business_center_transition_effects_options() { $business_center_transition_effects_options = array( 'fade' => __( 'Fade', 'business-center' ), 'cubic-bezier(0.250, 0.250, 0.750, 0.750)' => __( 'Linear', 'business-center' ), ); $output = apply_filters( 'business_center_transition_effects_options', $business_center_transition_effects_options ); return $output; } /** * Feature content type options * @return array Content type options */ function business_center_feature_content_type_options() { $business_center_feature_content_type_options = array( 'category' => __( 'Category', 'business-center' ), ); $output = apply_filters( 'business_center_feature_content_type_options', $business_center_feature_content_type_options ); return $output; } /** * Call To Action content type options * @return array Content type options */ function business_center_call_to_action_content_type_options() { $business_center_call_to_action_content_type_options = array( 'post' => __( 'Post', 'business-center' ), ); $output = apply_filters( 'business_center_call_to_action_content_type_options', $business_center_call_to_action_content_type_options ); return $output; } /** * Front Page Blog content type options * @return array Content type options */ function business_center_front_page_blog_content_type_options() { $business_center_front_page_blog_content_type_options = array( 'category' => __( 'Category', 'business-center' ), ); $output = apply_filters( 'business_center_front_page_blog_content_type_options', $business_center_front_page_blog_content_type_options ); return $output; } /** * Team content type options * @return array Content type options */ function business_center_team_content_type_options() { $business_center_team_content_type_options = array( 'category' => __( 'Category', 'business-center' ), ); $output = apply_filters( 'business_center_team_content_type_options', $business_center_team_content_type_options ); return $output; }