Function.php
/** remove qucik edit option for category in wp-admin **/
add_action('admin_head', 'hide_category_buttons');
function hide_category_buttons() {
echo '<style>
.taxonomy-category tr:hover .row-actions .inline{
display: none;
}
</style>';
}
/** remove qucik edit option for category in wp-admin **/
add_action('admin_head', 'hide_category_buttons');
function hide_category_buttons() {
echo '<style>
.taxonomy-category tr:hover .row-actions .inline{
display: none;
}
</style>';
}
No comments:
Post a Comment