Last active
May 21, 2016 09:34
-
-
Save mustafix/0534627bbbe619a1dddfbbbca3e6ce76 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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