On February 20, 2014 at 9:29 am
Hello
I want add a small icon and background for admin comment. I know which css should I use but I don’t know php.
I see some post that say we should replace :
<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>"></li>
by :
<li class="<?php if ($comment->user_id == 1) $oddcomment = "authorstyle"; echo $oddcomment; ?>"></li>
but in function of zenon theme there is this code :
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID() ?>">
and
`<div id=”comment-<?php comment_ID(); ?>” class=”comment-body”> ‘
how can I use this without use plugin.
so thanks for your helps.