I have this code that should return all the posts that related to the taxonomy id, but it returns the last 5 posts.
<?php
$leaderships = new WP_Query(array(
'post_type' => 'leadership',
'posts_per_page' => 11,
'tax_query' => array(
array(
'taxonomy' => 'leadership-committee',
'field' => 'id',
'terms' => 13,
),
),
));
?>
posts_per_page is not working here, Any help to get all the posts.
Thanks
Thanks every one for help, I discovered that that the problem is from my theme admin area that was limiting the posts to 5 and fixed now.