Skip to content

Instantly share code, notes, and snippets.

@kevinwhoffman
Created December 10, 2015 22:24
Show Gist options
  • Save kevinwhoffman/94c03618370d80ae186e to your computer and use it in GitHub Desktop.
Save kevinwhoffman/94c03618370d80ae186e to your computer and use it in GitHub Desktop.
Author Shortcode
<?php
function get_the_author_display_name() {
return get_the_author_meta( 'display_name' );
}
add_shortcode( 'author', 'get_the_author_display_name' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment