wp_safe_redirect_fallback

过滤钩子
apply_filters( 'wp_safe_redirect_fallback', admin_url()
参数
  • (string) $fallback_url The fallback URL to use by default.
    Required:
  • (int) $status The HTTP response status code to use.
    Required:
定义位置
相关勾子
wp_redirectwp_redirect_statusx_redirect_bywidget_form_callbackold_slug_redirect_url
相关方法
wp_safe_redirectwp_mediaelement_fallbackwp_sanitize_redirectwp_rel_callbackwp_validate_redirectwp_redirect
引入
4.3.0
弃用
-

wp_safe_redirect_fallback:这是一个 WordPress 函数,用于在 safe_redirect 函数无法被执行的情况下作为备用的方法。safe_redirect 函数用于安全地重定向到指定 URL。在 safe_redirect 函数无法被执行的情况下,wp_safe_redirect_fallback 函数可以作为备用方案,以确保安全地重定向。

过滤当所提供的重定向不安全(本地)时的重定向后备URL。

$location = wp_validate_redirect( $location, apply_filters( 'wp_safe_redirect_fallback', admin_url(), $status ) );

常见问题

FAQs
查看更多 >