Plugin Directory

Changeset 2354247


Ignore:
Timestamp:
08/06/2020 08:35:11 PM (6 years ago)
Author:
cynderhost
Message:

Update versioning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cynderhost/trunk/cynderhost.php

    r2354246 r2354247  
    1010 * Plugin URI:        https://cynderhost.com
    1111 * Description:       Provides an easy interface to clear the CynderHost CDN cache, both automatically and programmatically.
    12  * Version:           1.0.4
     12 * Version:           1.0.5
    1313 * Author:            CynderHost
    1414 * Author URI:        https://profiles.wordpress.org/cynderhost/
     
    2626
    2727
    28 define( 'CYNDERHOST_VERSION', '1.0.4' );
     28define( 'CYNDERHOST_VERSION', '1.0.5' );
    2929
    3030
     
    114114 */
    115115add_action('publish_post', 'do_cache_cynderhost_purge', 10, 0);
    116 add_action('transition_post_status', 'do_cache_cynderhost_purge', 10, 0);
     116add_action('save_post', 'do_cache_cynderhost_purge', 10, 0);
    117117add_action('wp_trash_post', 'do_cache_cynderhost_purge', 10, 0);
    118118add_action('switch_theme', 'do_cache_cynderhost_purge', 10, 0);
     
    120120add_action('deactivated_plugin', 'do_cache_cynderhost_purge', 10, 0);
    121121add_action('deactivated_plugin', 'do_cache_cynderhost_purge', 10, 0);
    122 add_action('admin_notices', 'cy_author_admin_notice');
    123 add_action('wp_loaded', 'check_cache_purge');
     122add_action('admin_notices', 'cynderhost_author_admin_notice', 10, 0);
     123add_action('wp_loaded', 'cynderhost_check_cache_purge');
    124124
    125125
Note: See TracChangeset for help on using the changeset viewer.