I've recently included a wordpress install with full integration into magento using the fishpig plugin. I am struggling to limit the character/word count for posts on the homepage.
FishPig have documented a widget for posting excerpts including the following code:
<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>
i would assume i could imitate the "setExcerptLength" into a post as "setPostLength" and include in my wordpress.xml within the homepage block
<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>
however these seems to have no effect.
I assume that all wordpress functions have been converted into xml with the full integration so i cannot take the usual root.
Any help on this would be greatly appreciated.