comments_open
Filters whether the current post is open for comments.
Использование
add_filter( 'comments_open', 'wp_kama_comments_open_filter', 10, 2 );
/**
* Function for `comments_open` filter-hook.
*
* @param bool $comments_open Whether the current post is open for comments.
* @param int $post_id The post ID.
*
* @return bool
*/
function wp_kama_comments_open_filter( $comments_open, $post_id ){
// filter...
return $comments_open;
}
- $comments_open(true|false)
- Whether the current post is open for comments.
- $post_id(int)
- The post ID.
Список изменений
| С версии 2.5.0 | Введена. |
Где вызывается хук
comments_open
wp-includes/comment-template.php 1325
return apply_filters( 'comments_open', $comments_open, $post_id );
Где используется хук в WordPress
wp-includes/default-filters.php 317
add_filter( 'comments_open', '_close_comments_for_old_post', 10, 2 );