Wordpress: $ authors_posts does not return the author

0

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);
?>
    
asked by Aldo Martinez 03.02.2018 в 08:30
source

0 answers