Skip to content

Instantly share code, notes, and snippets.

@ScarletPonytail
Last active November 17, 2017 14:01
Show Gist options
  • Save ScarletPonytail/6a4bbb40027d9b741091f6ea611294d2 to your computer and use it in GitHub Desktop.
Save ScarletPonytail/6a4bbb40027d9b741091f6ea611294d2 to your computer and use it in GitHub Desktop.
Magento - [FishPig Wordpress Plugin] Adding Recent Blog Posts to a Magento Template File
<?php $posts = Mage::getResourceModel('wordpress/post_collection')
->addPostTypeFilter('post')
->setOrderByPostDate()
->addIsViewableFilter()
->setPageSize(5)
->load(); ?>
<?php if (count($posts) > 0): ?>
<ul>
<?php foreach($posts as $post): ?>
<li>
<a href="<?php echo $post->getPermalink() ?>"><?php echo $this->escapeHtml($post->getPostTitle()) ?></a>
<?php if ($image = $post->getFeaturedImage()): ?>
<a href="<?php echo $post->getPermalink() ?>">
<img src="<?php echo $image->getAvailableImage() ?>" src="<?php echo $this->escapeHtml($post->getPostTitle()) ?>" />
</a>
<?php endif; ?>
<p><?php echo $post->getPostExcerpt(40) ?></p></li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment