在magento上的Wordpress自定义帖子

时间:2013-02-11 19:20:05

标签: wordpress magento fishpig

我正在尝试使用Fishpig扩展程序(完全集成)在Magento上显示一些Wordpress自定义帖子。

扩展程序网站上没有文档。我似乎无法想象如何做到这一点。

任何帮助?

[编辑]

好的,我正在寻找的是:

我在我的wordpress后端创建了名为'Slides'的自定义帖子。我想在magento主页上使用它们来创建一个滑块。 一方面,当我查看fishpig模板时,我看到一个独特的$ post-> getPost(),我希望,例如,我想要使用哪种类型的帖子的详细信息。我知道不能这样做,当然我应该使用预定义的fishpig方法(我找不到),或创建一个新方法。 另一方面,这次在fishpig布局中,可能会采取以下行动:

<action method="setTitle"><title>Latest Posts</title></action>

我认为我可以用这种方式配置我想要显示的帖子类型..

很抱歉,但我没有在线网址向您展示项目,我仍然在项目的早期部分..

THX

1 个答案:

答案 0 :(得分:1)

我认为你在这里寻找的是:

<action method="setPostType"><type>yourposttypeslug</type></action>

这应该遵循您在最近的帖子块中已经拥有的片段,如下所示:

<block type="wordpress/sidebar_widget_posts" name="wordpress.widget.recent_posts" as="recent_posts" template="wordpress/sidebar/widget/posts.phtml">
    <action method="setTitle"><title>Latest Posts</title></action>
    <action method="setPostType"><type>yourposttypeslug</type></action>
    <action method="setPostCount"><post_count>3</post_count></action>
</block>