Definition:
function comments_open( $post_id=NULL ) {}
Whether the current post is open for comments.
Parameters
- int $post_id: An optional post ID to check instead of the current post.
Return values
returns:True if the comments are open
Defined filters
- comments_open
apply_filters( 'comments_open', $open, $post_id )
Source code
function comments_open( $post_id=NULL ) { $_post = get_post($post_id); $open = ( 'open' == $_post->comment_status ); return apply_filters( 'comments_open', $open, $post_id ); }
649
No comments yet... Be the first to leave a reply!