merhaba arkadaşlar bir yazara ait postları aşağıdaki gibi çekmek istiyorum:


$args = array(
'author'=>get_the_author_meta('ID'),
'post_type' => 'proje'
);
$the_query = new WP_Query( $args );
if ( have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo get_the_title().'

}
wp_reset_postdata();
} else {//post yok
}


fakat sadece 4 tane post geliyor. Daha fazla post var. Sorun nedir acaba?