Advertisement
Guest User

Untitled

a guest
Apr 8th, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.51 KB | None | 0 0
  1. <?php if ($maxitems == 0) echo '<li>No items.</li>'; else foreach ( $rss_items as $item ) : ?>
  2. <div class="midia">
  3.     <div class="icone">
  4.         <?php echo '<img src="' .get_first_image_url($item->get_content()). '"/>'; ?>
  5.         <div class="tipo"><i class="fa fa-video-camera"></i></div>
  6.     </div>
  7.         <div class="mid-tit"><a href='<?php echo esc_url( $item->get_permalink() ); ?>' title='<?php echo esc_html( $item->get_title() ); ?>'> <?php echo esc_html( $item->get_title() ); ?></a></div>
  8. </div>
  9. <?php endforeach; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement