Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Created February 27, 2017 15:18
Show Gist options
  • Select an option

  • Save anthonybudd/50608bbdabff5e9a7fbcf3f8e28fe78a to your computer and use it in GitHub Desktop.

Select an option

Save anthonybudd/50608bbdabff5e9a7fbcf3f8e28fe78a to your computer and use it in GitHub Desktop.
<?php
Class Example extends WP_AJAX
{
protected $action = 'example';
protected function run(){
$user = wp_get_current_user();
$this->JSONResponse($user);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment