comments_open( int|WP_Post $post_id = null )
Whether the current post is open for comments.
Parameters
- $post_id
-
(Optional) Post ID or WP_Post object. Default current post.
Default value: null
Return
(bool) True if the comments are open.
Source
File: wp-includes/comment-template.php
function comments_open( $post_id = null ) {
$_post = get_post($post_id);
$post_id = $_post ? $_post->ID : 0;
$open = ( 'open' == $_post->comment_status );
/**
* Filters whether the current post is open for comments.
*
* @since WP-2.5.0
*
* @param bool $open Whether the current post is open for comments.
* @param int $post_id The post ID.
*/
return apply_filters( 'comments_open', $open, $post_id );
}
Changelog
Version | Description |
---|---|
WP-1.5.0 | Introduced. |