Skip to content

Instantly share code, notes, and snippets.

@Musilda
Created October 5, 2019 09:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Musilda/b4a3cfe84ad128c0ee86a93ec0bb62fc to your computer and use it in GitHub Desktop.
Save Musilda/b4a3cfe84ad128c0ee86a93ec0bb62fc to your computer and use it in GitHub Desktop.
<?php
add_action( 'publish_post_after_month', 'musilda_publish_post_after_month' );
function musilda_publish_post_after_month() {
$post_id = 123;
wp_publish_post( $post_id );
}
add_action( 'init', 'musilda_single_event' );
function musilda_single_event(){
wp_schedule_single_event( 30 * DAY_IN_SECONDS, 'publish_post_after_month' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment