manage_comments_custom_column WordPress Action Hook
The manage_comments_custom_column hook is used to add custom columns to the comments list table in the WordPress admin. This hook is fired when the list table is being initialized.
do_action( 'manage_comments_custom_column', string $column_name , string $comment_id ) #
Fires when the default column output is displayed for a single row.
Parameters
- $column_name
(string)The custom column's name.
- $comment_id
(string)The comment ID as a numeric string.
Source
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |