I'm using Fishpig to pull in blog posts from WordPress and everything is working fine. However, on /blog instead of having the blog posts displayed in their full length I'd like to use excerpts from the posts (similar to WordPress's method of showing posts in archive/category/ect).
I found default.phtml under app/design/frontend/base/default/template/wordpress/post/list/renderer/default.phtml
and see that on line 21 is <?php echo $post->getPostExcerpt() ?>
When commenting this out the content from the posts on /blog no longer shows, indicating I'm in the right file. I really wish I could just use get_excerpt(); here. How/what do I modify to pull in an excerpt instead so the blog pages listing posts don't just pull in the entirety of each post?