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' => 'posttype',
'posts_per_page' => 11,
'tax_query' => array(
array(
'taxonomy' => 'taxonomy-name',
'field' => 'id',
'terms' => 13,
),
),
));
?>
posts_per_page is not working here, Any help to get all the posts.
Thanks