我最近使用 fishpig 插件包含了一个完全集成到 magento 中的 wordpress 安装。我正在努力限制主页上帖子的字符/字数。
FishPig 记录了一个用于发布摘录的小部件,包括以下代码:
<block type="wordpress/sidebar_widget_posts" name="wordpress.widget.recent_posts" as="recent_posts" template="wordpress/sidebar/widget/categoryposts.phtml">
<action method="setTitle"><title>Latest Posts</title></action>
<action method="setPostCount"><post_count>5</post_count></action>
<action method="setExcerpt"><display>on</display></action>
<action method="setExcerptLength"><length>30</length></action>
<action method="setDate"><date>on</date></action>
<action method="setCommentNum"><comments>on</comments></action>
</block>
我假设我可以将“setExcerptLength”模仿为“setPostLength”并将其包含在主页块中的wordpress.xml中
<block type="wordpress/post_list" name="wordpress_post_list" template="wordpress/post/list.phtml">
<block type="wordpress/post_list_pager" name="wordpress_post_list_pager">
<action method="setPostLength"><length>30</length></action>
</block>
</block>
但是这些似乎没有效果。
我假设所有的 wordpress 函数都已通过完全集成转换为 xml,所以我不能采用通常的根。
对此的任何帮助将不胜感激。