Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Blog Module /

Discuss the Blog Module.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Replacement for ParagraphSummary in SS3/Blog 0.6


Go to End


3 Posts   1617 Views

Avatar
Bruce B

Community Member, 164 Posts

7 September 2012 at 4:53pm

Any suggestions for how to duplicate the functionality of BlogEntry->ParagraphSummary() in Blog0.6/SS3?

I use it to show the first paragraph of the latest blog entries on the site front page. At the moment I just have $ParagraphSummary in the template (within a BlogEntry loop).

cheers
bruce

Avatar
Willr

Forum Moderator, 5523 Posts

7 September 2012 at 9:22pm

A number of other text operations (perhaps try FirstParagraph or ContextSummary) http://api.silverstripe.org/3.0/framework/model/Text.html

Avatar
Bruce B

Community Member, 164 Posts

10 September 2012 at 12:09pm

Will,
Thanks for that tip. I replaced
$ParagraphSummary
with

<% with Content %>
$LimitWordCountXML(40)
<% end_with %>

That has the added benefit that authors can now include html in their initial text.