Changeset 2354247
- Timestamp:
- 08/06/2020 08:35:11 PM (6 years ago)
- File:
-
- 1 edited
-
cynderhost/trunk/cynderhost.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cynderhost/trunk/cynderhost.php
r2354246 r2354247 10 10 * Plugin URI: https://cynderhost.com 11 11 * Description: Provides an easy interface to clear the CynderHost CDN cache, both automatically and programmatically. 12 * Version: 1.0. 412 * Version: 1.0.5 13 13 * Author: CynderHost 14 14 * Author URI: https://profiles.wordpress.org/cynderhost/ … … 26 26 27 27 28 define( 'CYNDERHOST_VERSION', '1.0. 4' );28 define( 'CYNDERHOST_VERSION', '1.0.5' ); 29 29 30 30 … … 114 114 */ 115 115 add_action('publish_post', 'do_cache_cynderhost_purge', 10, 0); 116 add_action(' transition_post_status', 'do_cache_cynderhost_purge', 10, 0);116 add_action('save_post', 'do_cache_cynderhost_purge', 10, 0); 117 117 add_action('wp_trash_post', 'do_cache_cynderhost_purge', 10, 0); 118 118 add_action('switch_theme', 'do_cache_cynderhost_purge', 10, 0); … … 120 120 add_action('deactivated_plugin', 'do_cache_cynderhost_purge', 10, 0); 121 121 add_action('deactivated_plugin', 'do_cache_cynderhost_purge', 10, 0); 122 add_action('admin_notices', 'cy _author_admin_notice');123 add_action('wp_loaded', 'c heck_cache_purge');122 add_action('admin_notices', 'cynderhost_author_admin_notice', 10, 0); 123 add_action('wp_loaded', 'cynderhost_check_cache_purge'); 124 124 125 125
Note: See TracChangeset
for help on using the changeset viewer.