Skip to content

Instantly share code, notes, and snippets.

@simongcc
Created January 21, 2020 05:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simongcc/b36da2b83d3f9c9b8f63fc32fb3f523f to your computer and use it in GitHub Desktop.
Save simongcc/b36da2b83d3f9c9b8f63fc32fb3f523f to your computer and use it in GitHub Desktop.
Wordpress - add post type support to existing post types
function sing_update_post_types_support() {
// add_post_type_support( 'events', 'post-formats' );
}
add_action( 'init', 'sing_update_post_types_support' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment