您的代码中有一些修改,而不是此类.taxonomy-category tr:hover .row-actions
在此类上应用css.taxonomy-category .row-actions span.delete
, 这会有用的。
这是完整的代码。
add_action(\'admin_head\', \'hide_category_buttons\');
function hide_category_buttons() {
echo \'<style>
.taxonomy-category .row-actions span.delete {
visibility: hidden;
}
</style>\';
}