manager->get_setting( 'business-power-show-breadcrumb' )->value(); return $value == 1 ? true : false; } endif; /** * Register breadcrumb Options * * @return void * @since 1.0 * @package Business Power WordPress Theme */ function business_power_get_breadcrumb_options(){ return array( array( 'id' => 'show-breadcrumb', 'label' => esc_html__( 'Show Breadcrumb', 'business-power' ), 'default' => true, 'type' => 'toggle', ), #bc - breadcrumb array( 'id' => 'bc-separator', 'label' => esc_html__( 'Separator', 'business-power' ), 'type' => 'icon', 'active_callback' => 'acb_breadcrumb', 'default' => 'f105', 'choices' => array( 'f105' => 'fa fa-angle-right', '002f' => 'fa-slash', 'f061' => 'fa fa-arrow-right', 'f178' => 'fa fa-long-arrow-right', 'f101' => 'fa fa-angle-double-right', ) ), array( 'id' => 'bc-size', 'label' => esc_html__( 'Font Size', 'business-power' ), 'description' => esc_html__( 'The value is in px. Defaults to 16px.' , 'business-power' ), 'default' => array( 'desktop' => 16, 'tablet' => 16, 'mobile' => 16, ), 'input_attrs' => array( 'min' => 1, 'max' => 60, 'step' => 1, ), 'type' => 'slider' ), ); }