// ========================================================================= // CUSTOM POST TYPE TAXONOMY // ========================================================================= function create_custom_post_types_taxonomy() { register_taxonomy( 'POST_TYPE_cat', 'POST_TYPE', array( 'label' => __( 'Kategória' ), 'rewrite' => array( 'slug' => 'POST_TYPE-type' ), 'hierarchical' => true, 'show_admin_column' => true, ) ); } add_action( 'init', 'create_custom_post_types_taxonomy' );
Leave a Reply