WP Manifestindependent plugin directory
manifest / email / instant-notifier

Instant Notifier

Check RSSes every five minutes and send mail for new items.

by Milan Dinić · github.com/dimadin/instant-notifier · website

0stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/dimadin/instant-notifier/archive/refs/heads/master.zip

Readme

Using

Install and activate this plugin, then place the following code with list of feeds you want to be checked to your custom code:

function md_in_feeds( $feeds ) {
    return array( 'http://blog.milandinic.com/feed/', 'http://www.milandinic.com/feed/' );
}
add_filter( 'instant_notifier_feeds', 'md_in_feeds' );

Read the full README on GitHub →