Skip to content

Instantly share code, notes, and snippets.

@dkotter
Created January 21, 2014 20:23
Show Gist options
  • Save dkotter/a00d0e4abfef13da3dd8 to your computer and use it in GitHub Desktop.
Save dkotter/a00d0e4abfef13da3dd8 to your computer and use it in GitHub Desktop.
<?php
function is_post_by_author( $author = '' ) {
if ( is_single() && $author ) {
if ( get_the_author() === $author ) {
return true;
} else {
return false;
}
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment