设置/更改magento博客上最近可见帖子的数量

时间:2017-02-21 11:04:34

标签: php magento-1.9 blogs

我在magento 1.9.2.0中使用MDL博客...我的博客页面仅显示最近的10篇帖子和右侧栏中发生的相同事情..我想在页面和侧边栏上显示所有帖子。 我的代码是:

    <?php if ($posts = $this->getRecent()): ?>
    <div class="menu-recent magicat-container">
            <ul class="listStyle">
                <?php foreach ($posts as $post): ?>
                    <li><span><a href="<?php echo $post->getAddress(); ?>" ><?php echo $post->getTitle(); ?></a></span></li>
                <?php endforeach; ?>
            </ul>
        </div>
    <?php endif; ?>

0 个答案:

没有答案