Hello,
I just developed a website, and everything looks great in Firefox 3.6.13, IE8, and IE8 Compatibility Mode, but I am having an issue with IE7.
I have the following code on the homepage of the website:
<?php query_posts('p=358'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
<?php wp_reset_query(); ?>
This is supposed to pull content that I have in a post into a specific area on the homepage, but it is not working in IE7.
I was hoping to get some insight.
Thanks!