Changeset 2623593
- Timestamp:
- 11/02/2021 05:18:11 PM (4 years ago)
- Location:
- comment-admin-notifier/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (4 diffs)
-
comment-admin-notifier.php (modified) (2 diffs)
-
includes/class-comment-admin-notifier.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
comment-admin-notifier/trunk/README.txt
r2274278 r2623593 3 3 Tags: comments, email, admin, alert, comment, notification, notify, discussion 4 4 Requires at least: 4.3 5 Tested up to: 5. 45 Tested up to: 5.8.1 6 6 Requires PHP: 5.6 7 7 Stable tag: trunk … … 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 10 11 W hen this plugin is installed, admin users get an email alert every time a new comment is posted on ANY post in the site11 With this plugin, admin users get an email alert every time a new comment is posted on ANY post in the site. 12 12 13 13 == Description == 14 14 15 In the * Discussion* page, authors of a post can use the checkbox *Email me whenever - Anyone posts a comment*.15 In the *Settings->Discussion* page, authors of a post can use the checkbox *Email me whenever - Anyone posts a comment*. 16 16 17 17 But this does not send an email as well to the site admins. In blogs where you have a number of guest authors, you may want to be informed about all the new comments so you can respond (if the author is missing) or just participate in the discussion. … … 23 23 == Installation == 24 24 25 Install this plugin from within your WordPress site by going to Plugins → Add New → and type this plugin's name 25 Install this plugin from within your WordPress site by going to Plugins → Add New → and type this plugin's name. 26 27 The plugin has a single configuration option (to enable the sending of emails) at the bottom of the *Settings->Discussion* page. 26 28 27 29 == Changelog == 30 31 = 1.1.2 = 32 * Tested plugin compatibility with WordPress 5.8 28 33 29 34 = 1.1.1 = … … 39 44 == Upgrade Notice == 40 45 46 = 1.1.2 = 47 * Tested plugin compatibility with WordPress 5.8 48 41 49 = 1.1.1 = 42 50 * Tested plugin compatibility with WordPress 5.4 -
comment-admin-notifier/trunk/comment-admin-notifier.php
r2274278 r2623593 11 11 * Plugin URI: https://github.com/jcabot/comment-admin-notifier 12 12 * Description: Enables admin users to be notified about all new published comments (even if they're not the authors of the posts) 13 * Version: 1.1. 113 * Version: 1.1.2 14 14 * Author: Jordi Cabot 15 15 * Author URI: https://seriouswp.com/ … … 38 38 * Rename this for your plugin and update it as you release new versions. 39 39 */ 40 define( 'COMMENT_ADMIN_NOTIFIER', '1.1. 1' );40 define( 'COMMENT_ADMIN_NOTIFIER', '1.1.2' ); 41 41 42 42 -
comment-admin-notifier/trunk/includes/class-comment-admin-notifier.php
r2031250 r2623593 130 130 131 131 //variable plugin_admin not used but the call is required to initialize dependencies 132 $plugin_admin = new Comment_Admin_Notifier_Admin( $this->get_plugin_name(), $this->get_version() ); //variable unused but the132 $plugin_admin = new Comment_Admin_Notifier_Admin( $this->get_plugin_name(), $this->get_version() ); 133 133 134 134 $plugin_settings = new Comment_Admin_Notifier_Settings( $this->get_plugin_name(), $this->get_version() );
Note: See TracChangeset
for help on using the changeset viewer.