WordPress plugin that provide a RSS feed for automatic newsletter generation.
Below is the name of the feed as configured in the settings.
To include all posts:
/<name>
To include posts published not later than <max-age>
days ago:
/<name>/max-age=<number-of-days>
To include all posts having at least one term from the taxonomy with the slug
<taxonomy>
:
/<name>/<taxonomy>
To include all posts having at least one of the <term>
:s of the taxonomy
<taxonomy>
:
/<name>/<taxonomy>;include=<term>,<term>,…,</term>
To include all posts not having any of the <term>
:s of the taxonomy
<taxonomy>
:
/<name>/<taxonomy>;exclude=<term>,<term>,…,</term>
To use a combination of include=…
, exclude=…
and <max-age>=…
,
separate them with semicolon:
/<name>/<taxonomy>;include=<term>,<term>,…,</term>;max-age=<number-of-days>
/<name>/<taxonomy>;exclude=<term>,<term>,…,</term>;max-age=<number-of-days>
/<name>/<taxonomy>;include=<term>,<term>,…,</term>;exclude=<term>,<term>,…,</term>
/<name>/<taxonomy>;include=<term>,<term>,…,</term>;exclude=<term>,<term>,…,</term>;max-age=<number-of-days>
Notice that taxanony
is reqiured if include=…
and/or exclude=…
is used, and that the included and/or excluded terms must be in that taxonomy.
Example, If you for instance have named your feed newsletter
and want all categorized
posts published within the last 14 days, you can use
/newsletter;exclude=uncategorized;max-age=14
Install the plugin the usually way.
You can also install it with GitHub Updater, which gives you the additional benefit of keeping the plugin up to date from within its administrative interface (i.e. the usually way). Please visit its wiki for more information.
Look for Newsletter Feed
in the Settings menu.
This plugin is currently hosted on GitHub; one way would be to "watch" the repository.
If you prefer WordPress to nag you about an update and let you update from within its administrative interface (i.e. the usually way) you must download GitHub Updater and install and activate it the usually way. Please visit its wiki for more information.
If you have a questions about the plugin, and cannot find an answer here, start by looking at issues and pull requests. If you still cannot find the answer, feel free to ask in the the plugin's issue tracker at Github.
If you have found a potential bug, please report it on the plugin's issue tracker at Github.
Contributions to the code or documentation are much appreciated.
If you are unfamiliar with Git, please post it as a new issue on the plugin's issue tracker at Github.
If you are familiar with Git, please do a pull request.
Fixed bug preventing registration of rewrite rule.
Improved the abstract plugin and settings classes and rewrote how the feed is generated.
Removed unnecessary import directive.
Changed how the feed is generated.
Changed to standard solution for fetching excerpts to be used as descriptions.
Improved information on settings page.
Initial release. Fully functional plugin.