leschmuuu.de

This tumblelog is edited by Lena Jordan

Suchen

Twitter feed

Find me on...

WordPress How to : Style comments of every roles

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

Posted via web from leschmuuu.de | Comment »

Lädt posts...