Skip to content

Instantly share code, notes, and snippets.

@Dianakc
Created July 10, 2023 16:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dianakc/0c8229171a3cf7a88c1d397b876441df to your computer and use it in GitHub Desktop.
Save Dianakc/0c8229171a3cf7a88c1d397b876441df to your computer and use it in GitHub Desktop.
<?php
$author_name = get_the_author_meta('display_name');
?>
<div>
Published by
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
<a href="<?php echo esc_url(get_author_posts_url(get_the_author_meta('ID'))); ?>" itemprop="url">
<span itemprop="name"><?php echo esc_html($author_name); ?></span>
</a>
</span>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment