Skip to content

Instantly share code, notes, and snippets.

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