Forums

[resolved] Query if on home page - not page 2, 3, 4 etc? (3 posts)

  1. robirming
    Member
    Posted 5 months ago #

    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 } ?>
  2. alchymyth
    The Sweeper
    Posted 5 months ago #

    http://codex.wordpress.org/Conditional_Tags

    example
    if(is_home() && !is_paged()) {

  3. robirming
    Member
    Posted 5 months ago #

    Great! Thank you very much, alchymyth.

Reply

You must log in to post.

About this Topic