'; if ( $brand_image ) { // we have an image. $brand_output .= ''; } if ( get_theme_mod( 'display_brand_text' ) ) { // text is toggled on, get site title. $site_title = get_bloginfo( 'name', 'display' ); // very long site titles break the navbar so cap it at a generous 50 chars. if ( strlen( $site_title ) <= 50 || get_theme_mod( 'allow_long_brand', false ) ) { $brand_output .= esc_html( $site_title ); } } $brand_output .= ''; } // this will return the markup if we have any or it will return false. return $brand_output; }