Skip to content

Instantly share code, notes, and snippets.

@peterwilsoncc
Created January 31, 2023 00:41
Show Gist options
  • Save peterwilsoncc/d362704b29c516f99188dc5585fba0e2 to your computer and use it in GitHub Desktop.
Save peterwilsoncc/d362704b29c516f99188dc5585fba0e2 to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Scheduled Post Test
*/
add_action( 'transition_post_status', function() { trigger_error( 'transition_post_status' ); } );
add_action( 'future_to_publish', function() { trigger_error( 'future_to_publish' ); } );
add_action( 'future_post', function() { trigger_error( 'future_post' ); } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment