Skip to content

Instantly share code, notes, and snippets.

@mustafix
Last active May 21, 2016 09:34
Show Gist options
  • Save mustafix/0534627bbbe619a1dddfbbbca3e6ce76 to your computer and use it in GitHub Desktop.
Save mustafix/0534627bbbe619a1dddfbbbca3e6ce76 to your computer and use it in GitHub Desktop.
<?php
function custom_post_taxonomy(){
register_taxonomy(
'service_category', // unic name
'Service', // আপনি যে custom post এর আন্ডারে taxonomy করছেন সেই custom post এর register_post_type টি এখানে দিতে হবে ।
array(
'label' =>'Service Category', // Display name
'public' => true,
'hierarchical' => true,
'query_var' => true,
'rewrite' => array('slug'=>'service-item', 'with-front' => true)
)
);
}
add_action( 'init', 'custom_post_taxonomy' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment