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 if ($maxitems1 == 0) echo '
- There is currently no new tweets. '; else foreach ( $rss_items1 as $item1 ) : ?>
- get_date('j F Y | g:i a'); ?>'> <?php echo esc_html( $item1->get_title() ); ?> <?php echo $item1->get_date('j F Y')?> <?php endforeach; ?>