Powered By Blogger

Monday, November 28, 2016

disable quick edit for category in wordpress or hide quick edit

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>';
}


No comments:

Post a Comment