Filters the default comment status for the given post type.
$statusstring$post_typestring$comment_typestringwp-includes/comment.php:395get_default_comment_status() * * @param string $status Default status for the given post type, * either 'open' or 'closed'. * @param string $post_type Post type. Default is `post`. * @param string $comment_type Type of comment. Default is `comment`. */ return apply_filters( 'get_default_comment_status', $status, $post_type, $comment_type );} /** * Retrieves the date the last comment was modified. * * @since 1.5.0Introduced in 4.3.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.