Created
October 2, 2013 04:35
-
-
Save RhythmShahriar/6789199 to your computer and use it in GitHub Desktop.
This file contains 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 | |
/**------------------------------------------- | |
* @package WordPress Default Avatar | |
* @link http://rhythmshahriar.com | |
* @author Rhythm <[email protected]> | |
* @copyright Copyright (c) 2013, Rhythm Shahriar | |
-------------------------------------------------*/ | |
function rhythm_admin_label( $classes ) { | |
$comment = get_comment(); | |
if ( $comment->user_id > 0 && user_can( $comment->user_id, 'manage_options' ) ) | |
$classes[] = 'byadmin'; | |
return $classes; | |
} | |
add_filter( 'comment_class', 'rhythm_admin_label' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment