by Arthur Yarwood on WordPress.org
Provide shortcodes to display a filtered list of posts, grouped by category/tag, with optional thumbnails.

Screenshot 1. How to customize list presentation through HTML and CSS configuration.
Fast Post Lists provides additional shortcodes to include a list of posts within another post or page.
Key features are:
The shortcode to use in your posts or pages is:
[fu_postlist]
By default, this will query all posts and sort by post title.
Below are some examples of how each of the parameters can be used:
[fu_postlist search=’stuff’]
[fu_postlist search=’stuff -rubbish’]
[fu_postlist cat=’Spiders’]
A single category can be listed by name or by id.
[fu_postlist cat=’Spiders,Dogs’]
[fu_postlist cat=’Spiders+Dogs’]
[fu_postlist notcat=’10,12’]
Categories to exclude must be listed as a comma-separated list of id’s.
[fu_postlist tag=’rain,shine’]
[fu_postlist tag=’heavy+metal’]
[fu_postlist nottag=’trouble’]
[fu_postlist maxposts=10]
A value of -1 or the parameter omitted entirely means all.
[fu_postlist groupby=cat]
[fu_postlist groupby=tag]
[fu_postlist orderby=’title’]
However, you may order by ‘ID’, ‘author’, ‘name’ (post slug), ‘date’, ‘rand’ etc.
Of course, you can mix and match many of these parameters to your heart’s content.