comments_open filter-hook . WP 2.5.0
Filters whether the current post is open for comments.
Usage
add_filter( 'comments_open', 'filter_function_name_1599', 10, 2 ); function filter_function_name_1599( $open, $post_id ){ // filter... return $open; }
- $open(true/false)
- Whether the current post is open for comments.
- $post_id(int)
- The post ID.
Changelog
Since 2.5.0 | Introduced. |
Where the hook is called
comments_open
wp-includes/comment-template.php 1254
return apply_filters( 'comments_open', $open, $post_id );
Where in WP core the hook is used WordPress
wp-includes/comment-template.php 257
add_filter( 'comments_open', '_close_comments_for_old_post', 10, 2 );