It's something like this -- in my actual theme comments' code.. within the 'foreach' statement... but i'm not sure that in my code below I'm actually referring to the userid of the commenter...
Here's the officialcommenter code:
Here's my suggested new code -- basically scratching officialcommenter out of there:
posts WHERE ID = '$comment_post_ID' LIMIT 1");
}
if ( $userdata && ( !$user->has_cap('level_9') && $user->has_cap('level_1') ) ) {
// The user is an author, not admin.
echo ' commentExpert';
}
elseif ( $userdata && ( $user_id == $post_author || $user->has_cap('level_9') ) ) {
// The user is post author OR the admin.
echo ' commentOfficialUser';
}
else
// The user is a nobody.
echo '';
?>
" id="comment-">