我在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; ?>