wp_redirect_status

过滤钩子
apply_filters( 'wp_redirect_status', $status, $location )
参数
  • (int) $status The HTTP response status code to use.
    Required:
  • (string) $location The path or URL to redirect to.
    Required:
定义位置
相关勾子
wp_redirectallowed_redirect_hostswp_set_comment_statuswp_editor_settingsredirect_post_location
相关方法
wp_redirectredirect_postwp_reset_postdata_wp_privacy_statuseswp_set_comment_statuswp_get_comment_status
引入
2.3.0
弃用
-

wp_redirect_status:这是 WordPress 中的一个钩子,它可以用于自定义重定向的状态码。使用这个钩子,开发者可以指定重定向的状态码,以便在浏览器中正确处理重定向。

过滤要使用的重定向HTTP响应状态代码。

$status = apply_filters( 'wp_redirect_status', $status, $location );

常见问题

FAQs
查看更多 >