Created
May 27, 2021 03:21
-
-
Save Olein-jp/c27bafd65be593f088d2cac8d4c69326 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
/** | |
* 編集画面でカスタムタクソノミーを一覧表示(チェックボックス)させる | |
*/ | |
add_action( | |
'init', | |
function() { | |
$tag_slug_args = get_taxonomy('jobs_skill'); | |
$tag_slug_args->hierarchical = true; | |
$tag_slug_args->meta_box_cb = 'post_categories_meta_box'; | |
register_taxonomy('jobs_skill', 'jobs', (array) $tag_slug_args); | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment