remove_control( 'bizznis_blog_title' ); $wp_customize->remove_control( 'header_info' ); } } endif; add_filter( 'bizznis_pre_get_option_blog_title', 'jetpack_blog_title' ); /** * Override existing blog_title settings * * @since 1.0.0 */ if ( ! function_exists( 'jetpack_blog_title' ) ) : function jetpack_blog_title( $option ) { if ( function_exists( 'jetpack_the_site_logo' ) && current_theme_supports( 'site-logo' ) ) { return 'text'; } return $option; } endif;