Está procurando uma maneira de remover os links de edição, visualização, lixeira e edição rápida que você vê quando passa o mouse sobre uma publicação? Embora provavelmente exista um plug-in para isso, criamos um trecho de código rápido que você pode usar para remover os links de edição, visualização, lixeira e edição rápida na administração de publicações no WordPress.
Instruções:
Tudo o que você precisa fazer é adicionar esse código ao arquivo functions.php do seu tema ou em um plug-in específico do site:
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; }
Observação: Se esta é a primeira vez que você adiciona trechos de código no WordPress, consulte nosso guia sobre como copiar/colar corretamente trechos de código no WordPress para não danificar seu site acidentalmente.
Se você gostou desse snippet de código, considere dar uma olhada em nossos outros artigos no site, como: 7 melhores plugins de calendário do WordPress e como iniciar um blog no WordPress.
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