Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

how to make category for spesific post wordpress devv

function tr_create_my_taxonomy() {

    register_taxonomy(
        'team-category',
        'team',
        array(
            'label' => __( 'Category' ),
            'rewrite' => array( 'slug' => 'team-category' ),
            'hierarchical' => true,
        )
    );
}
add_action( 'init', 'tr_create_my_taxonomy' );
Source by wordpress.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #category #spesific #post #wordpress #devv
ADD COMMENT
Topic
Name
5+2 =