X

How to Remove Edit, View, Trash and Quick Edit Links Within Posts Admin

Snippets by IsItWP

Are you looking for a way to remove the edit, view, trash, and quick edit links that you see when you mouse over a post? While there’s probably a plugin for this, we have created a quick code snippet that you can use to remove edit, view, trash, and quick edit links within posts admin in WordPress.

Instructions:

All you have to do is add this code to your theme’s functions.php file or in a site-specific plugin:

add_filter( 'post_row_actions', 'remove_row_actions', 10, 1 );
function remove_row_actions( $actions )
{
    if( get_post_type() === 'post' )
        unset( $actions['edit'] );
        unset( $actions['view'] );
        unset( $actions['trash'] );
        unset( $actions['inline hide-if-no-js'] );
    return $actions;
}

Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly copy / paste code snippets in WordPress, so you don’t accidentally break your site.

If you liked this code snippet, please consider checking out our other articles on the site like: 7 best WordPress calendar plugins and how to start a WordPress blog.

Comments   Leave a Reply

  1. It’s should on page one !

  2. it does not works

  3. it doesn’t work for post_type = ‘page’, but working smoothly for custom post type. Any solution for this? thx before

  4. Thanks a lot..

  5. How can I make these columns appear on a custom columns that I’ve added.

    I am adding a Testimonial post, which doesn’t support title in my case. And, hence I want to be able to show all options “the link, edit, trash, view, delete” links that appear on Title column to appear on this new column – Client name.

  6. Thanks for this. Was looking all over the place for this. 

  7. Funny Facebook Status November 20, 2011 at 8:24 am

    Any idea how to add Trash link in main Index Page.. Thanks.. 

  8. Funny Facebook Status November 20, 2011 at 8:23 am

    dsadas

  9. thanks for the snippet.. but how can i disable the hyperlink of the tittle of the post

    1. Ill take a look and see if this is a snippet I can post in the future.

  10. Great snippet – thanks

    Anyway to get this to work with a custom post type also though?

    1. You will notice on line 04:  if( get_post_type() === ‘post’ )  the post type is post if you change that to the custom post type name that should do it. However if you want to apply to every post and post type just remove line 04 altogether.

      1. (belated!) thanks, much appreciated

        1.  No problem Glad that I could help.

    2. Just thought about this as well, you could remove them for everyone but a set number of users, replace line 04 with the following.

      global $current_user;
      get_currentuserinfo();
      // change users in list
      $users = array(
      “dave”,
      “larry”,
      “steve”,
      “ryan”
      );
      if (!in_array($current_user->user_login, $users))

      Add new users that are allowed to see the edit, view, trash buttons etc.

  11. Great code snippet!  Would love to know how to remove the “trash” function housed above the list of posts, as well as on the edit post page.  basically, I want to take away any users ability to trash ANY post. thanks!

    1. Grant glad you like the snippet, in regards to your request you could always insert CSS using the admin_head hook and display none the class=”delete-action” would not disable the function but would hide the button. You can see this snippet to get the idea just change the css used.

      http://wpsnipp.com/index.php/functions-php/change-custom-post-type-icon-for-new-and-edit-post-pages/

      1.  You probably discourage this type of request. I am trying to add this snippet to WP. I am a PHP virgin and have messed up the syntax on inserting the code. I am an amateur at SQL and thought I could apply my limited knowledge process to this and I’ve fouled up”  I’ve placed it at the end of the /public_html/wp-content/themes/twentyten function file. I can’t get the closing syntax correct.  Do I need to add an endif; to close the file? Or, should I paste the snippet into a different location in the file.  I appreciate your help.

        1. @SurfinUSA:disqus you will notice within the functions.php at the start you have a the location does not matter for this snippet but it needs to be between the of the file.

          1. Kevin,

            I’m sorry. The symbols you used to designate where the snippet must be located did not appear either on your web page or in the confirming e-mail I received below.  Could you find another way to indicate the location where I need to insert the snippet?

        2. You can view a simple sample here,
          http://pastebin.com/0hVSQchQ

          Your functions.php would be bigger then this but the register code at the top should be there, just replace the code here with the code above.

          1. Thanks Kevin

            It works fine now

Add a Comment Cancel reply

We're glad you have chosen to leave a comment. Please keep in mind that all comments are moderated according to our privacy policy, and all links are nofollow. Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.

WordPress Launch Checklist

The Ultimate WordPress Launch Checklist

We've compiled all the essential checklist items for your next WordPress website launch into one handy ebook.
Yes, Send Me the Free eBook!