• Category I’m talking about :
    http://femalerappers.net/photos/

    I have managed to have Featured POST 1 of this particular category styled differently than the rest of the posts in the category and exclude post 1 as to not duplicate content.. My problem is POST 1 shows on every page for this specific category. I’m wanting it to only appear on Page 1 of this category.
    I haved search for multiple various solutions but none of them has been able to correct my problem.

    I’m really hoping someone can help and give me a viable solution!!!
    Below is the code currently for photos.php

    [ 111 lines of code moderated. For more than 10 lines of code please use pastebin.com instead. ]

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

    (@cabowm02)

    I figured something from this page probably has my answer, but I was unable to integrate it in my coding correctly I think..

    http://codex.wordpress.org/Conditional_Tags

    <?php
    $paged = $wp_query->get( ‘paged’ );

    if ( ! $paged || $paged < 2 )
    {
    // This is not a paginated page (or it’s simply the first page of a paginated page/post)

    }
    else
    {
    // This is a paginated page.

    }
    ?>

    Thread Starter cabowm02

    (@cabowm02)

    Or this

    <?php if ( $paged < 2 ) : ?>

    text for first page

    <?php else : ?>
    <p>Text for subsequent pages of Category.
    Can be left out.</p>
    <?php endif; ?>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Featured Image Within Category Only On Page 1 of Category’ is closed to new replies.