Sorry, I only work on the site once in a while (I’m a contractor). It’s not in one of the pages, either. I know where the footer is but I can’t figure out where the main body content is coming from. Rather, I can find the index.php page which is pulling in the dynamic photos but I can’t find the text. So below is the text of the index page. I’m sure the PHP is referencing some includes that have the text but I can’t find them in the same directory. It must be interacting with WordPress to pull them in.
<?php get_header(); ?>
<div id="content">
<div id="left">
<?php include('sidebar-page.php'); ?>
</div>
<div id="right">
<?php $oImg = array("pic-home-1.jpg","pic-home-2.jpg","pic-home-3.jpg","pic-home-5.jpg","pic-home-6.jpg","pic-home-7.jpg","pic-home-8.jpg","pic-home-9.jpg","pic-home-10.jpg","pic-home-11.jpg","pic-home-12.jpg","pic-home-13.jpg","pic-home-14.jpg","pic-home-15.jpg","pic-home-16.jpg");
$num = count($oImg);
$ran = rand(1,$num)-1; ?>
<img id="hmRotator" src="<?php bloginfo('template_url');?>/images/<?php echo $oImg[$ran]; ?>" alt="Test" /><br />
<?php if(is_home()) { query_posts("cat=1&showposts=1"); } ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h1><?php the_title(); ?></h1>
<div class="entry">
<?php the_content('Read the rest of this entry »'); ?>
</div>
</div>
<?php endwhile; else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>
<?php endif; ?>
</div>
<span class="clear"></span>
<div id="footer">
<?php get_footer(); ?>
</div>
</div>
</div>
</div>
</body>
</html>
Suggestions?
Thanks!