How to get post author name in WordPress? How to get post author name in WordPress? wordpress wordpress

How to get post author name in WordPress?


You can use get_the_author_meta(), to get author data.

echo get_the_author_meta('display_name', $author_id);

Hope this helps!


This should work like charm

<?php echo get_the_author(); ?>

For more detailed information.https://codex.wordpress.org/Function_Reference/get_the_author


Use below code in single.php or the relevant page you want author name

<?php get_the_author_meta( 'display_name', $author_id ); ?>