Created
June 18, 2018 09:38
-
-
Save anthonybudd/5b958c6915e14d45e221191c3b1cb04c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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