D
D
Delp2014-12-24 18:48:28
SQL
Delp, 2014-12-24 18:48:28

How to get the number of posts in a specific category in WordPress using wp_query?

How to get the number of posts in a specific category in WordPress using wp_query? And also how to make a query in WP_Query and use limit in it.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
J
jlekapb, 2014-12-24
@Delp

Hey!
Here is a similar one: https://wordpress.org/support/topic/display-the-po...

M
MrClon, 2014-12-25
@MrClon

And also how to make a query in WP_Query and use limit in it.

Something like this.
new WP_Query( array(
   'category_name' => 'cat-slug',
   'posts_per_page' => 100500,
  ) );

Although I'm not sure that posts_per_page will directly map to limit

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question