どうやったらwordpressのwp-admin/edit-comments.phpページに新しいカスタムコラムを追加できますか?私はこれを試しましたが、うまくいきませんでした。
add_filter( 'manage_comments_custom_column', 'add_new_columns' );
function add_new_columns($columns){
$column_meta = array( 'reported' => 'Reported' );
$columns = array_slice( $columns, 0, 4, true ) + $column_meta + array_slice( $columns, 6, NULL, true );
return $columns;
}
あなたが探しているフィルタはmanage_edit-comments_columns
です。これが管理者のコメント編集セクションにカスタム列を追加する方法を詳述した投稿です http://stv.whtly.com/2011/07/27/adding-custom-columns-to -the-wordpress-comments-admin-page /