Where in WordPress does a typical blog title get rendered (.php file and method name please)

I’d like to change the title of my blog (link usually at top left corner of site) from <h1> to <h2>. (for example, for this website it’s the stackoverflow link at the top left corner)

I need to know where the .php file which renders the title is located.

Read More

Right now, I can see that the title is being rendered within a do_atomic, but i’m not sure what that means or how to go deeper into it.

Thank you.

Related posts

Leave a Reply

1 comment

  1. Usually in [wordpress root]/wp-content/themes/[current theme name]/header.php or [wordpress root]/wp-content/themes/[current theme name]/functions.php.