• Hi I have the below code which successfully counts the posts in 2 categories. But since I have a limit of 7 posts per page it will only display a number up to 7, is there anyway around this? any help would be really great.

    `$posts = query_posts(
    array( ‘category__and’ => array(6,23),

    ));

    $stkpos2 = count($posts);`

Viewing 1 replies (of 1 total)
  • Thread Starter eckul

    (@eckul)

    Not too worry I fixed it by adding ‘posts_per_page’ => -1

    ` $posts = query_posts(
    array( ‘category__and’ => array(10,23),’posts_per_page’ => -1));

    $stkneg2 = count($posts);`

Viewing 1 replies (of 1 total)
  • The topic ‘Count all posts on site from two categories’ is closed to new replies.