comment_edit_redirect

过滤钩子
apply_filters( 'comment_edit_redirect', $location, $comment_id )
参数
  • (string) $location The URI the user will be redirected to.
    Required:
  • (int) $comment_id The ID of the comment being edited.
    Required:
定义位置
相关勾子
comment_post_redirectcomment_edit_precomment_textcomment_on_draftcomment_text_rss
相关方法
comment_textcomment_datecomment_timecomment_text_rsscomment_idis_redirect
引入
2.1.0
弃用
-

comment_edit_redirect: 这是一个过滤钩子,在一个评论在数据库中被更新后执行。该钩子被传递给用户在评论被更新后将被重定向到的URL。这个钩子的目的是允许插件或主题修改用户将被重定向到的URL。

过滤用户在管理员中编辑评论后被重定向到的URI。

$location = apply_filters( 'comment_edit_redirect', $location, $comment_id );

常见问题

FAQs
查看更多 >