• Resolved foochuck

    (@foochuck)


    Hello,

    I want to change the “Older Entries” template on my website. I want it to use a different template from “Main Index Template”.

    I’m trying to figure out what php page I can create to control this page. I want page 2 and all older pages to use a different template (here’s the sample url: http://www.sopranos.foochuck.com/page/2/ ) – which template changes this?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter foochuck

    (@foochuck)

    Perhaps I should be trying to just display the customization on my homepage and that way the other pages are the same? It’s basically some HTML I have on my Main Index that appears before The Loop. How can I have it detect the main page and then not appear on the older pages?

    Thread Starter foochuck

    (@foochuck)

    I think I just found what I needed…

    <?php if ( $paged < 2 ) { ?>
    <p>Text for first page of Category archive.</p>
    <?php } else { ?>
    <p>Text for subsequent pages of Category.
    Can be left out.</p>
    <?php } ?>
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Change the “Older Entries” Template’ is closed to new replies.