Deseja remover a coluna de contagem de comentários das páginas no painel do WordPress? Com nosso snippet, é fácil remover a coluna de comentários indesejados de suas páginas. Neste artigo, mostraremos como remover a coluna de comentários das páginas em seu painel do 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:
function remove_pages_count_columns($defaults) { unset($defaults['comments']); return $defaults; } add_filter('manage_pages_columns', 'remove_pages_count_columns');
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: 62 melhores temas de blog gratuitos do WordPress ou 7 melhores plugins de formulário de contato do WordPress.
Kevin, thanks for the share, but i want to edit your original Post. The part of code below absolutely works.
Kevin, thanks for the share but i want to make one small correction to your original Post.
Kevin thanx for this!
I would like to know if I want it to remove more columns on different parts of the admin area (pages, media, posts) how I would do this? Is there a simple example you could share?
– ENIX
The Netherlands
Hi Enix,
Well if you look on line 3 of the code you will see the name ‘comments’ change that to the name of other columns and it will remove them. However you can also remove multiple by just adding more of the same eg:
unset($defaults[‘comments’]);
unset($defaults[‘other’]);
unset($defaults[‘other’]);
I did not test all these names however they should work for you.
cb, title, author, categories, tags, comments, date
@wpsnipp:disqus ,
thank you, after my first reply I tried it as following and this works fine:
function remove_pages_count_columns($defaults) { unset($defaults[‘comments’]); return $defaults;}add_filter(‘manage_pages_columns’, ‘remove_pages_count_columns’);function remove_media_count_columns($defaults) { unset($defaults[‘comments’]); unset($defaults[‘author’]); unset($defaults[‘date’]); return $defaults;}add_filter(‘manage_media_columns’, ‘remove_media_count_columns’);
Again thank you for your work, alot of snippets are very handy! 🙂
No problem anytime, I post new snippets everyday so visit often 🙂
not working for me
[…] a little trick I found over at WPsnipp.com from author Kevin Chard. Add this to your functions.php file and it will remove the comments count […]