We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let's move to their own file, and make sure we're hiding from posts/page lists as well:
function remove_posts_columns($columns) { unset($columns['comments']); return $columns; } add_filter('manage_posts_columns', 'remove_posts_columns', 10, 2); function remove_pages_count_columns($defaults) { unset($defaults['comments']); return $defaults; } add_filter('manage_pages_columns', 'remove_pages_count_columns');
The text was updated successfully, but these errors were encountered:
Potential plugin: https://github.com/WPDevelopers/disable-comments
SQL to remove existing comments: https://www.hostinger.com/tutorials/how-to-delete-all-comments-wordpress#:~:text=The%20most%20straightforward%20way%20to,and%20choose%20Move%20to%20Trash.
Another potential option: https://gist.github.com/mattclements/eab5ef656b2f946c4bfb
Sorry, something went wrong.
No branches or pull requests
Let's move to their own file, and make sure we're hiding from posts/page lists as well:
The text was updated successfully, but these errors were encountered: