I’m new to WordPress. I read some themes will correctly render html tags embedded in the site title. The GeneratePress theme apparently will not. By this I mean, if I insert <sup><small>SM</small><sup> in the site title, I would like to see a small superscripted SM, not the literal string “<sup><small>SM</small><sup>”. One post I saw suggested editing header.php to change bloginfo(‘description’) to echo html_entity_decode(get_bloginfo(‘description’)). GeneratePress doesn’t have this in header.php.
What do I need to do with GeneratePress to get html tags to render correctly in the site title? Thanks.