Get Post Author

Posted on Oct 22, 2024

by Jimmy

Last updated on February 13, 2025


An easy way to get the post author meta data.

Place the code snippet below at the top of your page or component.

PHP
        
            $author_id = $post->post_author;
$author_name = get_the_author_meta('display_name', $author_id);
$author_url = esc_url( get_author_posts_url($author_id));        
    

Echo the required author data where needed.

HTML
        
            <span class="author">by <a href="<?= $author_url; ?>"><?= $author_name ?></a></span>        
    

Back to Snippets