Reply To: Question with Photolite Theme :)

#4481
Janet
Participant

I figured out how to get the recent post information from showing up by opening the CSS for the footer and removing this chunk:

I cut this chunk out of the code:

<?php if(!dynamic_sidebar(‘sidebar-7’)) : ?>
<div class=”footer-col”><h2>Recent Posts</h2>
<?php $foot_query = new WP_Query(‘post_type=post&showposts=2’); ?>
<?php while($foot_query->have_posts() ) : $foot_query->the_post(); ?>
<div class=”foot-post”>
<?php if( has_post_thumbnail() ) { ?>
<div class=”foot-post-thumb”>“><?php the_post_thumbnail(); ?>
</div><!– foot-post-thumb –>
<?php } ?>
<div class=”foot-post-content”>“><?php the_title(); ?>
<?php echo content(10); ?>
</div><!– foot-post-content –><div class=”clear”></div>
</div><!– foot-post –>
<?php endwhile; ?>
</div><!– footer-col –>
<?php endif; ?>