Section Coming up Twice

So On my site i have a latest tweet section, Instead of the section coming up once its appearing twice below is the code any help would be great : )

LATEST TWEETS

<?php $rss1 = fetch_feed("http://pipes.yahoo.com/pipes/pipe.run?_id=e3ec8c711bfd1ee1e13e5b483fb37786&_render=rss"); if (!is_wp_error( $rss1 ) ) : $maxitems1 = $rss1->get_item_quantity(10); $rss_items1 = $rss1->get_items(0, $maxitems1); endif; ?>
<?php endwhile; ?>

I think this is not a valid statement:
title=’<?php echo 'Posted '.$item1->get_date('j F Y | g:i a'); ?>’>

It breaks down to:
title=’<?php echo ’
Posted ‘.$item1->get_date(’
j F Y | g:i a’); ?>’>

Or something like that… I think you should try:
title=’<?php echo "Posted ".$item1->get_date("j F Y | g:i a"); ?>’>

Not sure if that is your issue or not.
I could not see any other problems… Let us know if you get it fixed!

Sponsor our Newsletter | Privacy Policy | Terms of Service