Last active
November 8, 2016 20:41
-
-
Save JudeRosario/5d0631610464ac23712dd5e8969390f4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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