Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Created February 27, 2017 15:50
Show Gist options
  • Save anthonybudd/c57a0b0eece88e65bb358f341e5a628a to your computer and use it in GitHub Desktop.
Save anthonybudd/c57a0b0eece88e65bb358f341e5a628a to your computer and use it in GitHub Desktop.
<?php
Class Example extends WP_AJAX
{
protected $action = 'example';
protected function run(){
echo $this->has('foo'); // (bool) TRUE
echo $this->has('baz'); // (bool) FALSE
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment