I'm trying to custom style a particular category of post on my Wordpress blog. I'm not familiar with PHP so i'm not sure what I need to add to make this section of code work:
Any help would be most appreciated.
Code:
<?php
if ( in_category( 'mini-ideas' )) {
<div>
Custom Style Information Here
</div>
} else {
<div>
Normal Style Information Here
</div>
}
?>
Any help would be most appreciated.











