• Hello!

    I have selected to show 13 post on my front page (in wp settings > Reading).
    My problem is that i want to have 15 post on my “Older Entries” pages.

    How do i make this happen?

    I tried “Custom Posts Per Page” Plugin but that doesn’t work.
    Im using the “WooTube” theme, dont know if that might be messing thins up.

    Blog adress: https://www.goertz.se/pov/
    Wordpress setting: https://imgur.com/a/Y3wEr

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter cgoertz

    (@cgoertz)

    Thank you for your reply.

    My knowledge of php is however close to nonexistent. I cant see which code to combine to get the outcome i what.

    Would be awesome if someone could put it in laymen’s terms.

    Thread Starter cgoertz

    (@cgoertz)

    I think this is the string of code that controls the amount of posts on my index page.

    <?php if (is_paged()) $is_paged = true; ?>
    		<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("post_type=post&paged=$paged"); ?>
    		<?php if (have_posts()) : $count = 0; $boxcount = 0;?>
            <?php while (have_posts()) : the_post(); $count++; ?>
    
                <?php if ($count == 1 && get_option('woo_home_featured') == "true" && !$is_paged) : ?>

    Any help is welcome!

    What i want is to have 13 posts on the “index” page and 18 posts on “Older entries” page (/page/2/).

    Should i put this code here then?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Different Post per page, help needed!’ is closed to new replies.