Forum Moderators: coopster
So it should be like
if (category=x) {the_content()}
else {the_excerpt)
now... my programming skills are so lame and don't really know how to code that. Any help would be really appreciated.
Thanks
This should be done in the site's index.php from the wordpress loop and that's what I've thought until now:
<div class="entry">
<?php if ($cat==460 ) {the_content()}
else { echo limit_content($post->post_content, 70);
echo "...<a class='readmore' href='";
the_permalink();
echo "'>[Read More...]</a>";
}?>
</div>
don't really know if the right variable is $cat because it gets an error.