Wordpress Help

Out of context: Reply #4

  • Started
  • Last post
  • 6 Responses
  • imbecile1

    I'm not exactly sure what you mean by "i wouldnt want the text to be repeated across all paginated pages."

    do you want this information only displayed on the homepage? but not if I go to page 2 from the homepage thumbnail navigation??

    If so...

    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;

    if ($paged === 1) {
    $page_id = Newstoday; // Replace Newstoday with your page id
    $page = get_post($page_id);
    if ($page) {
    $content = apply_filters('the_content', $page->post_content);
    echo $content;
    }
    }

    • Yes on the home page but not on other page that share the templatetrooperbill
    • should work thenimbecile

View thread