followtheboat
Programmer
Sorry if my title doesn't explain much but I'm new to PHP. I'm using wordpress and have two alternative types of comments in my comments page, odd and even. Each one has a different set of CSS styles attached to them.
I now need to add a third style, author, where the author has an id of '1' and if the comment is by that author, it displays an alternative set of styles.
I have so far:
What do I add to this code in order for wordpress to recognise that the author is id=1? I think it should be something along the lines of:
or something! Any help greatly appreciated.
I now need to add a third style, author, where the author has an id of '1' and if the comment is by that author, it displays an alternative set of styles.
I have so far:
Code:
<?php if('odd'==$thiscomment) { $thiscomment = 'even'; } else { $thiscomment = 'odd'; } ?>
What do I add to this code in order for wordpress to recognise that the author is id=1? I think it should be something along the lines of:
Code:
if (1 == $comment->user_id)
$author = "author";