edit_post_comment_status filter-hookWP 2.3.0

Filters the value of a specific post field to edit.

Only applied to post fields not prefixed with post_.

This is one of the variants of the dynamic hook edit_post_(field)

Usage

add_filter( 'edit_post_comment_status', 'wp_kama_edit_post_comment_status_filter', 10, 2 );

/**
 * Function for `edit_post_comment_status` filter-hook.
 * 
 * @param mixed $value   Value of the post field.
 * @param int   $post_id Post ID.
 *
 * @return mixed
 */
function wp_kama_edit_post_comment_status_filter( $value, $post_id ){

	// filter...
	return $value;
}
$value(mixed)
Value of the post field.
$post_id(int)
Post ID.

Changelog

Since 2.3.0 Introduced.

Where the hook is called

sanitize_post_field()
edit_post_comment_status
wp-includes/post.php 2979
$value = apply_filters( "edit_post_{$field}", $value, $post_id );

Where the hook is used in WordPress

Usage not found.