• Hi!

    I build a index.php frontpage with a loop through many different categories. But how do I disable the paging functionality? I saw that I got urls like mydomain.com/page/2 and mydomain.com/page/22 How do I disable this?

Viewing 4 replies - 1 through 4 (of 4 total)
  • query_posts('posts_per_page=-1');
     /* write here loop stuff */
    wp_reset_query();
    Thread Starter Marc Toensing

    (@marcdk)

    Does not work.

    I have 5 loops on my frontpage:

    `$do_not_duplicate = array();
    query_posts(‘showposts=1’);
    while (have_posts()) : the_post();
    $do_not_duplicate[]=get_the_ID();
    // DO STUFF
    endwhile;

    while (have_posts()) : the_post();
    // loop 2
    endwhile;

    while (have_posts()) : the_post();
    // loop 3
    endwhile;

    while (have_posts()) : the_post();
    // loop 4
    endwhile;

    while (have_posts()) : the_post();
    // loop special
    endwhile;

    Have a look here: https://www.marctv.de/page/2/

    Thread Starter Marc Toensing

    (@marcdk)

    No idea? =/

    if(! is_paged()) :
      /* your loops here */
    else :
      <p>Nor found.</p>
    endif;
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Disable paging on index frontpage like mydomain.com/page/2?’ is closed to new replies.