我正在使用Magento和WordPress,所以已经去了FishPig模块。我有一个CMS页面,并使用关联的博客文章选项卡来选择要在此页面上显示的帖子,这些帖子都按预期工作。
我面临的问题是,当我尝试在每个帖子旁边的Magento中使用位置框时,无论我将它们设置为什么顺序,它们始终保持在前端的相同顺序。
我知道在Magentos类别中你可以使用相同的位置框来命令产品在特定类别上的显示方式,所以我想使用相同的功能为下面的代码订购博客文章,但我无法找到如何让它工作。
<?php if (($posts = $this->getPostCollection()) !== false): ?>
<?php if (count($posts) > 0): ?>
<div class="box-collateral box-description" style="padding:5px 20px;">
<!--<?php if ($title = $this->getTitle()): ?>
<h2 style="margin-bottom:15px;">Blog <span style="color: #68d088;">Posts</span></h2>
<?php endif; ?>-->
<div class="std">
<ul>
<?php foreach($posts as $post): ?>
<li class="related-blogs">
<a href="<?php echo $post->getPermalink() ?>"><h2><?php echo $this->escapeHtml($post->getPostTitle()) ?></h2></a>
<div class="content">
<?php
$pos = strpos($post['post_content'], ' ', 300);
echo substr($post['post_content'],0,$pos );
?>
</div>
<a style="color:#68d088; font-weight:bold;" href="<?php echo $post->getPermalink() ?>">Read More...</a>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>
<?php endif; ?>
<?php endif; ?>