I'm trying to remove, hide or disable "Delete" button out of category editing section Code i've tried. No luck. Any ideas?
add_action('admin_head', 'hide_category_buttons');
function hide_category_buttons() {
echo '<style>
.taxonomy-category tr:hover .row-actions {
visibility: hidden;
}
</style>';
}
