manager->get_setting( 'theme_options[archive_image]' )->value() ) { return true; } else { return false; } } endif; if ( ! function_exists( 'blogism_is_image_in_single_active' ) ) : /** * Check if image in single is active. * * @since 1.0 * * @param WP_Customize_Control $control WP_Customize_Control instance. * * @return bool Whether the control is active to the current preview. */ function blogism_is_image_in_single_active( $control ) { if ( 'disable' !== $control->manager->get_setting( 'theme_options[single_image]' )->value() ) { return true; } else { return false; } } endif; if ( ! function_exists( 'blogism_is_featured_block_active' ) ) : /** * Check if featured block is active. * * @since 1.0.0 * * @param WP_Customize_Control $control WP_Customize_Control instance. * * @return bool Whether the control is active to the current preview. */ function blogism_is_featured_block_active( $control ) { if ( 'disabled' !== $control->manager->get_setting( 'theme_options[featured_block_status]' )->value() ) { return true; } else { return false; } } endif;