Skip to content

Instantly share code, notes, and snippets.

@rdgutierrez
Forked from brendannee/gist:7196251
Last active August 29, 2015 14:12
Show Gist options
  • Select an option

  • Save rdgutierrez/6b3fd3595a019f67e161 to your computer and use it in GitHub Desktop.

Select an option

Save rdgutierrez/6b3fd3595a019f67e161 to your computer and use it in GitHub Desktop.
function allow_my_post_types($allowed_post_types) {
$allowed_post_types[] = 'my_post_type';
return $allowed_post_types;
}
add_filter( 'rest_api_allowed_post_types', 'allow_my_post_types');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment