Skip to content

Instantly share code, notes, and snippets.

@eminetto
Created August 20, 2014 14:14
Show Gist options
  • Save eminetto/c0d8844dbdf3391be624 to your computer and use it in GitHub Desktop.
Save eminetto/c0d8844dbdf3391be624 to your computer and use it in GitHub Desktop.
<h2>
Blog <a href=”<?php echo $feed->get_permalink(); ?>” target=”_blank”>
<?php echo $feed->get_title(); ?></a>
</h2>
<nav>
<?php
$max = $feed->get_item_quantity();
for ($x = 0; $x < $max; $x++):
$item = $feed->get_item($x);
?>
<div class=”item”>
<p class=”title”>
<a href=”<?php echo $item->get_permalink(); ?>” target=”_blank”>
<?php echo $item->get_title(); ?>
</a>
<small>Data: <?php echo $item->get_date(‘j F Y | g:i a’); ?></small>
</p>
</div>
<?php endfor; ?>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment