Skip to content

Instantly share code, notes, and snippets.

@RhythmShahriar
Created October 2, 2013 04:35
Show Gist options
  • Save RhythmShahriar/6789199 to your computer and use it in GitHub Desktop.
Save RhythmShahriar/6789199 to your computer and use it in GitHub Desktop.
<?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