admin管理员组文章数量:1404605
In the Wordpress dashboard, I want to be able to add the option to turn off the Comment column. Can I do that via functions.php? I found a plugin that does a lot of things, but since I need this one small thing, I thought to keep it light.
I really hope someone knows this. Thanks!
In the Wordpress dashboard, I want to be able to add the option to turn off the Comment column. Can I do that via functions.php? I found a plugin that does a lot of things, but since I need this one small thing, I thought to keep it light.
I really hope someone knows this. Thanks!
Share Improve this question asked Jan 15, 2020 at 18:16 AlexAlex 1811 silver badge9 bronze badges1 Answer
Reset to default 1To achieve this, you should filter the manage_edit-comments_columns
filter to remove the core comment column, and add a custom comment column so the checkbox shows up in the screen options tab.
For the output of comments, you would then need to get comment_content
from the comment
for display output in the manage_comments_custom_column
hook.
This is an example of the above code:
add_filter( 'manage_edit-comments_columns', function( $columns ) {
// Remove core comment column.
unset( $columns['comment'] );
// Custom "Comment" column to add to screen options and output.
$custom_column = [ 'WPSE356451_add_comment' => 'Comment' ];
$columns = array_slice( $columns, 0, 2, true ) + $custom_column + array_slice( $columns, 2, NULL, true );
return $columns;
} );
add_action( 'manage_comments_custom_column', function( $column, $comment_ID ) {
global $comment;
// Check for custom comment column and handle output.
if ( 'WPSE356451_add_comment' === $column ) {
echo $comment->comment_content;
}
}, 10, 2 );
Here's a gist for the code above, and a direct plugin .zip for download.
本文标签: Add a Comment onoff option in Screen Options for Comments
版权声明:本文标题:Add a Comment onoff option in Screen Options for Comments? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744832223a2627417.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论