Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Olein-jp/c27bafd65be593f088d2cac8d4c69326 to your computer and use it in GitHub Desktop.
Save Olein-jp/c27bafd65be593f088d2cac8d4c69326 to your computer and use it in GitHub Desktop.
/**
* 編集画面でカスタムタクソノミーを一覧表示(チェックボックス)させる
*/
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