Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Created June 18, 2018 09:38
Show Gist options
  • Select an option

  • Save anthonybudd/5b958c6915e14d45e221191c3b1cb04c to your computer and use it in GitHub Desktop.

Select an option

Save anthonybudd/5b958c6915e14d45e221191c3b1cb04c to your computer and use it in GitHub Desktop.
<?php
function onSave(){
$request = new WP_AJAX;
if($request->has('foo')){
// Do stuff
}
}
add_action('save_post_MyCustomPostType', 'onSave');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment