• irishfalconer

    (@irishfalconer)


    Hello All !!!

    I am trying to figure out how to display by categories on my main blog instead of by posts … Also when I list 10 posts it will show all 10 posts, is there anyway to create say 5 per page.

    Any help at all guys would be a blessing.

    Cheers all.

Viewing 1 replies (of 1 total)
  • Dinh Tv

    (@trungdinh)

    Hi,
    You can change Post per page in : Setting >> Reading : Change Blog pages show at most 10 to your number.
    Or add code in functions.php

    function postpage( $query )
    {
    	if ( is_category('Your category ID') )
        {
            $query->query_vars['order'] = 'DESC';
    		$query->query_vars['orderby'] = 'id';
    		$query->query_vars['posts_per_page'] = 'Change your number post/page here';
            return;
        }
    }

    ?? Good luck!

Viewing 1 replies (of 1 total)
  • The topic ‘Display by Category instead of by post’ is closed to new replies.