Powered By Blogger
Showing posts with label postlist. Show all posts
Showing posts with label postlist. Show all posts

Thursday, July 13, 2017

remove quick edit and inline row below post list in wp-admin

function.php

function remove_quick_edit( $actions, $post) {
  if ($post->post_type =="tribe_events"){
    unset($actions['inline hide-if-no-js']);
    unset($actions['edit']);
    unset($actions['trash']);
    unset($actions['view']);
    }
  return $actions;
}
add_filter('post_row_actions','remove_quick_edit',10,2);