Plugin Directory

Changeset 2107483


Ignore:
Timestamp:
06/17/2019 03:19:38 PM (7 years ago)
Author:
insivia
Message:

Various bug fixes for image processing on different servers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • image-studio/trunk/image-studio.php

    r2104999 r2107483  
    44 * Plugin URI:  https://insivia.com/image-studio
    55 * Description: Configure and create designer images for social media and ads from your posts, pages, and CPTs.
    6  * Version:     1.1
     6 * Version:     1.2
    77 * Author:      insivia
    88 * Author URI:  https://insivia.com/
     
    5050
    5151 
     52// cron proicesing
     53if ( ! wp_next_scheduled( 'check_edited_images' ) ) {
     54  wp_schedule_event( time(), 'hourly', 'check_edited_images' );
     55}
    5256
     57add_action( 'check_edited_images', 'wis_process_edited_images' );
     58
     59function wis_process_edited_images() {
     60    global $wpdb, $chat_table;
     61     
     62}
    5363
    5464 
Note: See TracChangeset for help on using the changeset viewer.