comment_save_pre

过滤钩子
apply_filters( 'comment_save_pre', $data['comment_content'] )
参数
  • (string) $comment_content The comment data.
    Required:
定义位置
相关勾子
content_save_precomment_edit_precomments_openexcerpt_save_precomment_text_rss
相关方法
comments_opencomment_datecomments_rsscomment_typecomment_text_rssadd_comments_page
引入
1.5.0
弃用
-

comment_save_pre: 这个过滤器允许你在评论被保存到数据库之前修改它的数据。

在数据库中更新评论内容之前过滤评论内容。

$data['comment_content'] = apply_filters( 'comment_save_pre', $data['comment_content'] );

常见问题

FAQs
查看更多 >