
When you have lots of comments on your WordPress blog, it is a good thing to give a special style to admin comments, like I do on CatsWhoBlog.com. But what about being able to give special styles to editors, contributors and subscribers comments?

When you have lots of comments on your WordPress blog, it is a good thing to give a special style to admin comments, like I do on CatsWhoBlog.com. But what about being able to give special styles to editors, contributors and subscribers comments?
To do so, simply open your comments.php file and replace your comments loop by this one :
<ol id="commentlist"> <?php foreach ($comments as $comment) : ?> <?php // The extra stuff to get commenter's role $user_id = $comment->user_id; $role = ( isset( $roles[$user_id] ) ? $roles[$user_id] : '' ); ?> <li class="<?php echo $role; ?>"> <p>By <?php comment_author_link() ?> - <?php comment_date() ?></p> <?php comment_text() ?> </li> <?php endforeach; ?> </ol>
Once done, open yout style.css file and paste the following:
#commentlist li { border:2px solid white; } /* not logged or subscriber */
#commentlist li.administrator { border:2px solid red } /* blog admin */
#commentlist li.editor { border:2px solid blue } /* editor */
Many thanks to Ozh for this very interesting code!
By the way, as you probably know, today is black friday in the US and I have lots of great promo codes to share with all my readers:
WOOTHEMES : Get 50% off (No code needed)
STUDIOPRESS : 50% off on ANY theme packages with code SPTHX
GODADDY : $4 domains with the CJCBLACK09 code
HOSTGATOR : get a 20% discount using the code AUTUMN
28 Responses
This is a great tip, although the theme I am currently using has a good way of setting admin comments apart, some of my other blogs don’t.
Excellent tips! I’m sure this would be very useful for some sites, like community-based sites.
Well that was much simpler than I was expecting. Thanks!
Great I was wondering how to do this. Thanks Alot.
WOW! This is great. I remember looking for this a long time ago and it took me a while to find this code. I wish this was published earlier. Would have saved me lots of time.
Great tip, i bookmark for future!
Thank You !
Well That Was Much Simpler Than I Was Expecting.
This code is for OLD WordPress version, new wordpress version (Threaded Comment Support) using different code to play around with comment.
Can you update this code to make this wonderful tips work great on it?
Thanks for this code, but, according the previus comment.. this is for a old version of WP, can you update this?
Thanks!
yes it uses the “old” comments template (Which is still used by most themes). I’ll probably write a version for the new comments template soon, so stay tuned
Hi Jean,
The Hostgator affiliate link is kinda failing (forgot http ?)
@Griner : Ah that sucks
Thanks for letting me know!
Hi, nice tutorial! Question: How can I apply a different style only for admin comments? Thanks!
Wow..nice tutorial. And simple to implement. Will try this trick.
Can someone please update this code for new template.
Thanx in advance
@ken the tech: you need to edit this line:
#commentlist li.administrator { border:2px solid red } /* blog admin */
in the CSS – it’s for styling the admin only.
(get user ID, in example 1, 2, 3 or 5)
$user_id = $comment->user_id;
(asign numbers to roles, in example 1 is admin, 5 is an editor)
$role = ( isset( $roles[$user_id] ) ? $roles[$user_id] : ” );
(pass role as a class)
<li class="”>
Robert
Hi JBJ, The code is for OLD WordPress version
I still use theme with old style and old wordpress version too. This awesome tricks can be applied to my theme.
here here. yes, need this to be updated. thanks!
Hi JBJ, The code is for OLD WordPress version 2.1??
Thank you for this great tip, I bookmark it!
Is there any image like this speech bubble?
Trackbacks: