Skip to content

Instantly share code, notes, and snippets.

@crodrigoturner
Last active April 30, 2021 07:40
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 crodrigoturner/a94d9a07087713cca83587dba5ff0312 to your computer and use it in GitHub Desktop.
Save crodrigoturner/a94d9a07087713cca83587dba5ff0312 to your computer and use it in GitHub Desktop.
WP_ customposttype
add_action( 'init', 'cpt' );
function cpt() {
$args = array(
'public' => true,
'label' => 'Notes'
);
register_post_type( 'notes', $args );
}
function reg_cat() {
register_taxonomy_for_object_type('category','notes');
}
add_action('init', 'reg_cat');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment