PluginProbe
Social Media Auto Poster – Schedule & Publish to Buffer / 3.8.2
Social Media Auto Poster – Schedule & Publish to Buffer v3.8.2
6.2.3 6.2.2 6.2.1 6.2.0 6.1.2 6.1.1 6.1.0 6.0.9 6.0.8 6.0.7 6.0.6 6.0.5 6.0.4 6.0.3 6.0.2 6.0.1 6.0.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.8.7 3.8.8 All 124 releases
wp-to-buffer / includes / admin / cron.php

cron.php in Social Media Auto Poster – Schedule & Publish to Buffer 3.8.2, at includes/admin/cron.php

20 lines 466 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Define the WP Cron function to perform the log cleanup
4 *
5 * @since 3.9.8
6 */
7 function wp_to_buffer_log_cleanup_cron() {
8
9 // Initialise Plugin
10 $wp_to_buffer = WP_To_Buffer::get_instance();
11 $wp_to_buffer->initialize();
12
13 // Call CRON Log Cleanup function
14 $wp_to_buffer->get_class( 'cron' )->log_cleanup();
15
16 // Shutdown
17 unset( $wp_to_buffer );
18
19 }
20 add_action( 'wp_to_buffer_log_cleanup_cron', 'wp_to_buffer_log_cleanup_cron' );