Skip to content

Instantly share code, notes, and snippets.

@ooooak
Created October 1, 2014 07:05
Show Gist options
  • Save ooooak/a817eecc8f200a9bcfd7 to your computer and use it in GitHub Desktop.
Save ooooak/a817eecc8f200a9bcfd7 to your computer and use it in GitHub Desktop.
wordpress after save post.
function on_save( $post_id ) {
$post_type = get_post_type($post_id);
// order page
if ($post_type == 'shop_order'){}
}
add_action( 'save_post', 'ag_on_booking_save' ); // called after post saved
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment