comments_open

过滤钩子
apply_filters( 'comments_open', $open, $post_id )
参数
  • (bool) $open Whether the current post is open for comments.
    Required:
  • (int) $post_id The post ID.
    Required:
定义位置
相关勾子
comment_closedcomments_per_pagecomment_textcomment_linkcomment_form
相关方法
comments_opencomment_typecomments_linkcomments_popup_linkis_comments_popupadd_comments_page
引入
2.5.0
弃用
-

comments_open: 这个函数返回一个布尔值,表示一个给定文章的评论是否开放。默认情况下,所有文章类型的评论都是开放的,但你可以使用comments_open过滤器来修改这一行为。

过滤当前文章是否开放供评论。

return apply_filters( 'comments_open', $open, $post_id );

常见问题

FAQs
查看更多 >