我想在我的页脚上查看我最近的博客文章(Magento)

时间:2014-06-12 07:14:35

标签: magento

我在Magento上使用此扩展程序

http://www.magentocommerce.com/magento-connect/nblog-blog-extension-by-neotheme.html

我的博客页面工作正常,但我想在我的页脚上显示最近的3个帖子。

我没有得到任何解决方案。 如果有人知道这一点,请帮助我

2 个答案:

答案 0 :(得分:3)

检查app\design\frontend\base\default\layout\neotheme\blog.xml

<default>标记

中添加此代码
<reference name="footer">
    <block type="neotheme_blog/widget_post_list" name="blog.latest.posts"/>
</reference>

答案 1 :(得分:1)

在blog.xml的default标记中使用以下代码

<block type="neotheme_blog/widget_post_list" after="blog.category.list" name="blog.latest.posts">
     <action method="setPostCount"><param>5</param></action>
</block>

在param标签之间你可以输入任何数字。博客将显示否。相应的职位。