wpseek.com
A WordPress-centric search engine for devs and theme authors
comments_open › WordPress Function
Since1.5.0
Deprecatedn/a
› comments_open ( $post_id = null )
Parameters: |
|
Returns: |
|
Defined at: |
|
Codex: |
Determines whether the current post is open for comments.
For more information on this and similar theme functions, check out the {@link Conditional Tags} article in the Theme Developer Handbook.Related Functions: comment_type, comments_link, comments_popup_link, add_comments_page, is_comments_popup
Source
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 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 ); }