Skip to content

Instantly share code, notes, and snippets.

@isotrope
Created December 1, 2014 18:47
Show Gist options
  • Save isotrope/608bb1da329870166afc to your computer and use it in GitHub Desktop.
Save isotrope/608bb1da329870166afc to your computer and use it in GitHub Desktop.
Test to see if save_post hook is firing
<?php
/**
* Test to see if save_post is firing
*
* If it works, you should see an 'iso_save_post' entry in your wp_options table
*
*/
function iso_test_save_post() {
add_option( 'iso_save_post', 'is_saving!' );
}
add_action( 'save_post', 'iso_test_save_post' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment