Skip to content

Instantly share code, notes, and snippets.

@JudeRosario
Last active November 8, 2016 20:41
Show Gist options
  • Save JudeRosario/5d0631610464ac23712dd5e8969390f4 to your computer and use it in GitHub Desktop.
Save JudeRosario/5d0631610464ac23712dd5e8969390f4 to your computer and use it in GitHub Desktop.
<?php
$comment_user = get_user_by( 'email', get_comment_author_email() );
if ( user_can( $comment_user->ID, 'staff' ) ) {
if ( get_the_author_meta( 'staff') ) {
$x = ( the_author_meta( 'staff', $comment_user->ID ) == '' ) ? "Staff" : the_author_meta( 'staff', $comment_user->ID ) ;
echo '<div class="staff-label">';
echo $x ;
echo '</div>';
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment