esc_html__( 'Primary Sidebar - Content', 'boston-business' ), 'right-sidebar' => esc_html__( 'Content - Primary Sidebar', 'boston-business' ), 'no-sidebar' => esc_html__( 'No Sidebar', 'boston-business' ), ); $output = apply_filters( 'boston_business_filter_layout_options', $choices ); return $output; } endif; if ( ! function_exists( 'boston_business_get_pagination_type_options' ) ) : /** * Returns pagination type options. * * @since 1.0 * * @return array Options array. */ function boston_business_get_pagination_type_options() { $choices = array( 'default' => esc_html__( 'Default (Older / Newer Post)', 'boston-business' ), 'numeric' => esc_html__( 'Numeric', 'boston-business' ), ); return $choices; } endif; if ( ! function_exists( 'boston_business_get_breadcrumb_type_options' ) ) : /** * Returns breadcrumb type options. * * @since 1.0 * * @return array Options array. */ function boston_business_get_breadcrumb_type_options() { $choices = array( 'disabled' => esc_html__( 'Disabled', 'boston-business' ), 'simple' => esc_html__( 'Simple', 'boston-business' ), ); return $choices; } endif; if ( ! function_exists( 'boston_business_typography_options' ) ) : /** * Returns list of typography * @return array font styles */ function boston_business_typography_options() { $choices = array( 'default' => esc_html__( 'Poppins, sans-serif;', 'boston-business' ), 'header-font-1' => esc_html__( 'Rajdhani, sans-serif', 'boston-business' ), 'header-font-2' => esc_html__( 'Cherry Swash, cursive', 'boston-business' ), 'header-font-3' => esc_html__( 'Philosopher, sans-serif', 'boston-business' ), 'header-font-4' => esc_html__( 'Slabo 27px, serif', 'boston-business' ), 'header-font-5' => esc_html__( 'Dosis, sans-serif', 'boston-business' ), ); $output = apply_filters( 'boston_business_typography_options', $choices ); return $output; } endif; if ( ! function_exists( 'boston_business_body_typography_options' ) ) : /** * Returns list of typography * @return array font styles */ function boston_business_body_typography_options(){ $choices = array( 'default' => esc_html__( 'Ubuntu, sans-serif', 'boston-business' ), 'body-font-1' => esc_html__( 'News Cycle, sans-serif', 'boston-business' ), 'body-font-2' => esc_html__( 'Pontano Sans, sans-serif', 'boston-business' ), 'body-font-3' => esc_html__( 'Gudea, sans-serif', 'boston-business' ), 'body-font-4' => esc_html__( 'Quattrocento Sans, sans-serif', 'boston-business' ), 'body-font-5' => esc_html__( 'Khand, sans-serif', 'boston-business' ), ); $output = apply_filters( 'boston_business_body_typography_options', $choices ); return $output; } endif;