Is it possible to have like a conditional tag for the home page of a blog (not /page/2/ etc.)?
The thing is that I want to make it so that the logo and 'Home' link is not linked when being on the home page, but as soon as you're on page 2, 3, 4 etc. I want it linked.
Example:
<?php
if (is_home_page() ) { ;?>
Home
<?php } else { ?>
<a href="/">Home</a>
<?php } ?>