| 1 |
<?php |
| 2 |
|
| 3 |
/* |
| 4 |
Plugin Name: Email Post Changes |
| 5 |
Description: Whenever a change to a post or page is made, those changes are emailed to the blog's admin. |
| 6 |
Plugin URI: http://wordpress.org/extend/plugins/email-post-changes/ |
| 7 |
Version: 0.6 |
| 8 |
Author: Michael D Adams |
| 9 |
Author URI: http://blogwaffe.com/ |
| 10 |
*/ |
| 11 |
|
| 12 |
require_once 'class.email-post-changes.php'; |
| 13 |
|
| 14 |
add_action( 'init', array( 'Email_Post_Changes', 'init' ) ); |
| 15 |
|