WordPress 裡使用 CSS 的方式讓使用者無法選擇多層分類

add_action('admin_head', 'gathering_design_wp_admin_css');

function gathering_design_wp_admin_css() {

    global $current_screen;

    if ($current_screen->taxonomy === 'store-category') {
        echo '<style>.form-field.term-parent-wrap { display: none; }</style>';
    }
}