comment_on_trash action-hookWP 2.9.0

Fires when a comment is attempted on a trashed post.

Usage

add_action( 'comment_on_trash', 'wp_kama_comment_on_trash_action' );

/**
 * Function for `comment_on_trash` action-hook.
 * 
 * @param int $comment_post_id Post ID.
 *
 * @return void
 */
function wp_kama_comment_on_trash_action( $comment_post_id ){

	// action...
}
$comment_post_id(int)
Post ID.

Changelog

Since 2.9.0 Introduced.

Where the hook is called

wp_handle_comment_submission()
comment_on_trash
wp-includes/comment.php 3557
do_action( 'comment_on_trash', $comment_post_id );

Where the hook is used in WordPress

Usage not found.