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.
It’s should on page one !
it does not works
it doesn’t work for post_type = ‘page’, but working smoothly for custom post type. Any solution for this? thx before
Thanks a lot..
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.
Thanks for this. Was looking all over the place for this.
Any idea how to add Trash link in main Index Page.. Thanks..
dsadas
thanks for the snippet.. but how can i disable the hyperlink of the tittle of the post
Ill take a look and see if this is a snippet I can post in the future.
Great snippet – thanks
Anyway to get this to work with a custom post type also though?
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.
(belated!) thanks, much appreciated
No problem Glad that I could help.
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.
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!
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/
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.
@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.
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?
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.
Thanks Kevin
It works fine now