Skip to content

Instantly share code, notes, and snippets.

@codearachnid
Created August 24, 2012 03:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codearachnid/3445180 to your computer and use it in GitHub Desktop.
Save codearachnid/3445180 to your computer and use it in GitHub Desktop.
WordPress admin editor screen is new vs edit
<?php
/**
* use in WordPress editor to determine if is in new|edit mode
*
* @return bool
*/
function admin_is_new(){
global $post;
return (get_post_status($post->ID) == 'auto-draft');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment