CMS multi-listing entry - can I show only snippet of content?

4 posts by 2 authors in: Forums > CMS Builder
Last Post: March 20, 2013   (RSS)

By meg - March 19, 2013

I'm using the CMS like a blog (multi-listing entries), and I'm interested in showing only a certain amount of characters of the content in the listing area. How do I do that?

So right now I'm using 

<?php foreach ($blog_entriesRecords as $record): ?>

<?php echo $record['content']; ?>

<?php endforeach ?>

to display the content. 

By dwellingproductions - March 19, 2013

I just updated my post above with additional explanation about how to specify the amount of characters (words) that are shown.  :-)

- Jeremy

---------------------------

Dwelling Productions

www.dwellingproductions.com

By meg - March 20, 2013

Much appreciated!!! Works great - thank you!