Skip to content

Instantly share code, notes, and snippets.

@koraysels
Last active August 29, 2015 14:15
Show Gist options
  • Save koraysels/115ca00f8075579cc855 to your computer and use it in GitHub Desktop.
Save koraysels/115ca00f8075579cc855 to your computer and use it in GitHub Desktop.
add categories to your custom post type in wordpress (post type here is 'event')
require_once 'post-types/event.php';
// WP Menu Categories
add_action( 'init', 'build_taxonomies', 0 );
function build_taxonomies() {
register_taxonomy( 'category', 'event', array(
'hierarchical' => true,
'label' => 'Categorieën',
'query_var' => true,
'rewrite' => true
) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment