trash_post_comments action-hookWP 2.9.0

Fires before comments are sent to the Trash.

Usage

add_action( 'trash_post_comments', 'wp_kama_trash_post_comments_action' );

/**
 * Function for `trash_post_comments` action-hook.
 * 
 * @param int $post_id Post ID.
 *
 * @return void
 */
function wp_kama_trash_post_comments_action( $post_id ){

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

Changelog

Since 2.9.0 Introduced.

Where the hook is called

wp_trash_post_comments()
trash_post_comments
wp-includes/post.php 3786
do_action( 'trash_post_comments', $post_id );

Where the hook is used in WordPress

Usage not found.