Howdy phoenix_feet,
Right now, it’s not possible to indicate excerpt vs. content in the shortcode, but what you can do is have multiple post_loop_template.php
files (named uniquely, of course) and specify which template you’d like to use in the shortcode. So, you effectively use different templates for each shortcode if you like.
So, if you copy the post_loop_template.php
file from the plugin in your theme and name it post_loop_excerpt.php
, then when using the shortcode, you can specify that you want to use the template that only shows the_excerpt()
. Then, you can have another file post_loop_content.php
that you use when you want to show the_content()
.
From the FAQ:
How do I change the output template?
Simply copy the posts_loop_template.php
to your theme directory and make changes as necessary.
You can even rename it – but make sure to indicate that in the shortcode using the template='template_name.php'
.
I hope that helps.