Changeset 2107483
- Timestamp:
- 06/17/2019 03:19:38 PM (7 years ago)
- File:
-
- 1 edited
-
image-studio/trunk/image-studio.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
image-studio/trunk/image-studio.php
r2104999 r2107483 4 4 * Plugin URI: https://insivia.com/image-studio 5 5 * Description: Configure and create designer images for social media and ads from your posts, pages, and CPTs. 6 * Version: 1. 16 * Version: 1.2 7 7 * Author: insivia 8 8 * Author URI: https://insivia.com/ … … 50 50 51 51 52 // cron proicesing 53 if ( ! wp_next_scheduled( 'check_edited_images' ) ) { 54 wp_schedule_event( time(), 'hourly', 'check_edited_images' ); 55 } 52 56 57 add_action( 'check_edited_images', 'wis_process_edited_images' ); 58 59 function wis_process_edited_images() { 60 global $wpdb, $chat_table; 61 62 } 53 63 54 64
Note: See TracChangeset
for help on using the changeset viewer.