Hi -
I'm putting a div box at the bottom of my wordpress blog, but I only want it to show on the home page. When I wrapped by div in conditional tags, I kept getting an error. Is there a specific way to wrap div's - that contain additional php coding - around php conditional tags.
Here is what I have so far -
<div class="logbg">
<div class="logtop"><div class="main_title">More Featured Articles</div></div>
<div class="main_post">
<?php c2c_get_recent_posts(3); ?>
</div>
</div>
<div class="logbot"></div>
Thanks!