Skip to content

Instantly share code, notes, and snippets.

@WinstonN
Created October 30, 2014 08:48
Show Gist options
  • Save WinstonN/347abf85bd0807988f9a to your computer and use it in GitHub Desktop.
Save WinstonN/347abf85bd0807988f9a to your computer and use it in GitHub Desktop.
<?php
/**
* @category Fishpig
* @package Fishpig_Wordpress
* @license http://fishpig.co.uk/license.txt
* @author Ben Tideswell <help@fishpig.co.uk>
*/
?>
<?php $posts = $this->getPosts() ?>
<?php if (count($posts) > 0): ?>
<div class="post-list">
<ul id="post-list">
<?php foreach($posts as $post): ?>
<li class="item<?php if ($post->isSticky()): ?> featured is-sticky<?php endif; ?>">
<?php echo $this->getPostRenderer($post)->toHtml() ?>
</li>
<?php endforeach; ?>
</ul>
<script type="text/javascript">decorateList($('post-list'));</script>
<?php echo $this->getPagerHtml() ?>
</div>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment