__( 'Hersteller' ), 'hierarchical' => false, 'rewrite' => array( 'slug' => 'brennerei' ), /* 'capabilities' => array( 'assign_terms' => 'edit_guides', 'edit_terms' => 'publish_guides' ) */ ) ); } add_action( 'init', 'create_taxonomy_brennerei', 0 ); function create_taxonomy_whiskyregion() { // create a new taxonomy register_taxonomy( 'region', 'post', array( 'label' => __( 'Whiskyregion' ), 'hierarchical' => false, 'rewrite' => array( 'slug' => 'region' ), ) ); } add_action( 'init', 'create_taxonomy_whiskyregion', 0 ); function create_taxonomy_sponsor() { // create a new taxonomy register_taxonomy( 'sponsor', 'post', array( 'label' => __( 'Sponsored By' ), 'hierarchical' => false, 'rewrite' => array( 'slug' => 'sponsored' ), ) ); } add_action( 'init', 'create_taxonomy_sponsor', 0 );