# wp-to-buffer/3.8.7/includes/cron.php

Social Media Auto Poster – Schedule &amp; Publish to Buffer, version 3.8.7. 28 lines.

- Page: https://pluginprobe.com/plugins/wp-to-buffer/3.8.7/code/includes/cron.php
- Raw: https://pluginprobe.com/plugins/wp-to-buffer/3.8.7/raw/includes/cron.php
- Modified: 2023-02-06T16:45:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-to-buffer/3.8.7/code/includes/cron.php#L10-L20`.

```php
<?php
/**
 * Defines functions that are called by WordPress' Cron.
 *
 * @package WP_To_Buffer
 * @author WP Zinc
 */

/**
 * Define the WP Cron function to perform the log cleanup
 *
 * @since   3.9.8
 */
function wp_to_buffer_log_cleanup_cron() {

	// Initialise Plugin.
	$wp_to_buffer = WP_To_Buffer::get_instance();
	$wp_to_buffer->initialize();

	// Call CRON Log Cleanup function.
	$wp_to_buffer->get_class( 'cron' )->log_cleanup();

	// Shutdown.
	unset( $wp_to_buffer );

}
add_action( 'wp_to_buffer_log_cleanup_cron', 'wp_to_buffer_log_cleanup_cron' );

```
