Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save northernbellediaries/b030f8ba97304ce33913 to your computer and use it in GitHub Desktop.
Save northernbellediaries/b030f8ba97304ce33913 to your computer and use it in GitHub Desktop.
Add a post signature for multiple authors?
<?php
//* Add a post signature for multiple authors
if ( is_single() ) {
printf ('<div class="tracey-signature ' .
get_the_author_meta('user_id') . '"> </div>');
}
elseif ( is_single() ) {
printf ('<div class="cat-signature ' .
get_the_author_meta('user_id') . '"> </div>');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment