manage_comments_custom_column
Fires when the default column output is displayed for a single row.
Description
Parameters (2)
- 0. $column_name (string)
- The custom column's name.
- 1. $comment_comment_id (int)
- The custom column's unique ID number.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'manage_comments_custom_column', $column_name, $comment_comment_id );
- The following example is for adding a hook callback.
- // define the manage_comments_custom_column callback
- function action_manage_comments_custom_column( $column_name, $comment_comment_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'manage_comments_custom_column', 'action_manage_comments_custom_column', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'manage_comments_custom_column', 'action_manage_comments_custom_column', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/includes/class-wp-comments-list-table.php
- do_action( 'manage_comments_custom_column', $column_name, $comment->comment_ID );