Created
October 30, 2014 08:48
-
-
Save WinstonN/347abf85bd0807988f9a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @category Fishpig | |
* @package Fishpig_Wordpress | |
* @license http://fishpig.co.uk/license.txt | |
* @author Ben Tideswell <[email protected]> | |
*/ | |
?> | |
<?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