I try to do a var_dump
to verify if the author brings me the name, but I get null
o.o
This is the code:
<?php
$authors_posts = get_posts( array(
'author' => 19,
'numberposts' => 1,
'orderby' => 'date'
)
);
var_dump($authors_posts->post_author);
?>