Skip to content

Instantly share code, notes, and snippets.

@spencejs
Created March 22, 2013 05:19
Show Gist options
  • Select an option

  • Save spencejs/5219121 to your computer and use it in GitHub Desktop.

Select an option

Save spencejs/5219121 to your computer and use it in GitHub Desktop.
Force Post Type To Be Private In Wordpress
//Force Post type to be Private
function force_type_private($post){
if ($post['post_type'] == 'my_post_type')
$post['post_status'] = 'private';
return $post;
}
add_filter('wp_insert_post_data', 'force_type_private');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment