Displays your upcoming posts in a sidebar widget to tease your readers
Like this plugin? Consider leaving a quick review or writing about how you’ve used it on your site – send me a link to that write up if you do.
This plugin is maintained on GitHub, so feel free to use the repository for reporting issues, submitting feature requests and submitting pull requests.
SOUP creates a widget in your sidebar which allows you to display your upcoming posts (scheduled, drafts, or both) to your readers. The idea is to entice your readers to come back and read the article once it gets published, or better yet, subscribe to your RSS feed and/or newsletter.
Here are the configurable options for the widget:
I’ve got plans to continue developing and updating this plugin. If you have any suggestions on revisions that you’d like to see made, please get in touch or find me on Twitter.
I also run Do It With WordPress, which has an array of tutorials for managing, modifying and maintaining your WordPress sites, as well as The WP Butler, a service for keeping your site maintained, backed up, updated and secure.
soup-show-off-upcoming-posts
folder to the /wp-content/plugins/
directoryThere is a filter (soup_query
) for the WP_Query args, so you can add and modify args as needed to get the result you need.
For example, to limit your results to posts in category 3, you might add something like the function below to your functionality plugin:
function limit_soup( $args ) { $args['cat'] = 3; return $args; } add_filter( 'soup_query', 'limit_soup' );
Absolutely. I’ll be providing more options and upgrades in the near future. You can stay up to date by following me on Twitter. If you have an idea for a new feature, you can create a new feature request on GitHub. If you don’t have a GitHub account, then tell me what this widget should do that it doesn’t currently.
Many WordPress users send their RSS feed through FeedBurner, which has the option to deliver your latest posts by email to anyone who subscribes. Just log in to FeedBurner, go to the Publicize tab and select Email Subscriptions where you’ll be able to grab the link.
The best thing to do is to submit an issue on GitHub. If you don’t have a GitHub account, then get in touch with me and I’ll see about getting it fixed.
Release date: May 23, 2016
Release date: May 20, 2016
soup_query
filter. See the FAQ tab for details on how to use this.Release date: January 26, 2016
Release date: October 1, 2015