manager->get_setting( 'busyness_theme_options[loader_enable]' )->value(); } endif; if ( ! function_exists( 'busyness_is_breadcrumb_enable' ) ) : /** * Check if breadcrumb is enabled. * * @since Busyness 1.0.0 * @param WP_Customize_Control $control WP_Customize_Control instance. * @return bool Whether the control is active to the current preview. */ function busyness_is_breadcrumb_enable( $control ) { return $control->manager->get_setting( 'busyness_theme_options[breadcrumb_enable]' )->value(); } endif; if ( ! function_exists( 'busyness_is_pagination_enable' ) ) : /** * Check if pagination is enabled. * * @since Busyness 1.0.0 * @param WP_Customize_Control $control WP_Customize_Control instance. * @return bool Whether the control is active to the current preview. */ function busyness_is_pagination_enable( $control ) { return $control->manager->get_setting( 'busyness_theme_options[pagination_enable]' )->value(); } endif; /** * Front Page Active Callbacks */ /** * Check if login_register_meta section is enabled. * * @since Busyness 1.0.0 * @param WP_Customize_Control $control WP_Customize_Control instance. * @return bool Whether the control is active to the current preview. */ function busyness_is_login_register_meta_section_enable( $control ) { return ( $control->manager->get_setting( 'busyness_theme_options[topbar_login_register_enable]' )->value() ); } /** * Check if slider section is enabled. * * @since Busyness 1.0.0 * @param WP_Customize_Control $control WP_Customize_Control instance. * @return bool Whether the control is active to the current preview. */ function busyness_is_slider_section_enable( $control ) { return ( $control->manager->get_setting( 'busyness_theme_options[slider_section_enable]' )->value() ); } /** * Check if service section is enabled. * * @since Busyness 1.0.0 * @param WP_Customize_Control $control WP_Customize_Control instance. * @return bool Whether the control is active to the current preview. */ function busyness_is_service_section_enable( $control ) { return ( $control->manager->get_setting( 'busyness_theme_options[service_section_enable]' )->value() ); } /** * Check if about section is enabled. * * @since Busyness 1.0.0 * @param WP_Customize_Control $control WP_Customize_Control instance. * @return bool Whether the control is active to the current preview. */ function busyness_is_about_section_enable( $control ) { return ( $control->manager->get_setting( 'busyness_theme_options[about_section_enable]' )->value() ); } /** * Check if blog section is enabled. * * @since Busyness 1.0.0 * @param WP_Customize_Control $control WP_Customize_Control instance. * @return bool Whether the control is active to the current preview. */ function busyness_is_blog_section_enable( $control ) { return ( $control->manager->get_setting( 'busyness_theme_options[blog_section_enable]' )->value() ); } /** * Check if blog section content type is page. * * @since Busyness 1.0.0 * @param WP_Customize_Control $control WP_Customize_Control instance. * @return bool Whether the control is active to the current preview. */ function busyness_is_blog_section_content_page_enable( $control ) { $content_type = $control->manager->get_setting( 'busyness_theme_options[blog_content_type]' )->value(); return busyness_is_blog_section_enable( $control ) && ( 'page' == $content_type ); } /** * Check if blog section content type is category. * * @since Busyness 1.0.0 * @param WP_Customize_Control $control WP_Customize_Control instance. * @return bool Whether the control is active to the current preview. */ function busyness_is_blog_section_content_category_enable( $control ) { $content_type = $control->manager->get_setting( 'busyness_theme_options[blog_content_type]' )->value(); return busyness_is_blog_section_enable( $control ) && ( 'category' == $content_type ); } /** * Check if cta section is enabled. * * @since Busyness 1.0.0 * @param WP_Customize_Control $control WP_Customize_Control instance. * @return bool Whether the control is active to the current preview. */ function busyness_is_cta_section_enable( $control ) { return ( $control->manager->get_setting( 'busyness_theme_options[cta_section_enable]' )->value() ); }