Need help! IE not handling this PHP
-
Hi Guys,
I’m getting a weird behavior in IE with this WP theme I am using. There is a random list of posts generated in the top right hand corner.
You can see this on: http://www.thecooljournal.co.nz
In IE the posts are disappearing and rotating weirdly. This isn’t happening in Firefox or Chrome.
Any ideas why this might be happening?
here is the code:
<div id=”postlist”>
<ul class=”spy”>
<?php $my_query = new WP_Query(‘orderby=rand’); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post();?>-
<?php $screen = get_post_meta($post->ID, ‘mini’, $single = true); ?>
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><img src=”<?php echo $screen; ?> “”/><h2>” title=”<?php the_title(); ?>”><?php the_title(); ?></h2>
<div class=”fcats”><?php the_category(‘, ‘); ?> </div>
<?php endwhile; ?>
</div>
<div class=”clear”></div> -
The topic ‘Need help! IE not handling this PHP’ is closed to new replies.