wpmu_admin_do_redirect
函数
wpmu_admin_do_redirect ( $url = '' )
- 参数
-
-
(string)
$url
Optional. Redirect URL. Default empty.- Required: 否
- Default: (empty)
-
(string)
- 相关
-
- wp_redirect()
- 定义位置
-
-
wp-includes/ms-deprecated.php
, line 270
-
wp-includes/ms-deprecated.php
- 引入
- –
- 弃用
- 3.3.0
Redirect a user based on $_GET or $_POST arguments.
The function looks for redirect arguments in the following order:
1) $_GET[‘ref’]
2) $_POST[‘ref’]
3) $_SERVER[‘HTTP_REFERER’]
4) $_GET[‘redirect’]
5) $_POST[‘redirect’]
6) $url
function wpmu_admin_do_redirect( $url = '' ) { _deprecated_function( __FUNCTION__, '3.3.0', 'wp_redirect()' ); $ref = ''; if ( isset( $_GET['ref'] ) && isset( $_POST['ref'] ) && $_GET['ref'] !== $_POST['ref'] ) { wp_die( __( 'A variable mismatch has been detected.' ), __( 'Sorry, you are not allowed to view this item.' ), 400 ); } elseif ( isset( $_POST['ref'] ) ) { $ref = $_POST['ref']; } elseif ( isset( $_GET['ref'] ) ) { $ref = $_GET['ref']; } if ( $ref ) { $ref = wpmu_admin_redirect_add_updated_param( $ref ); wp_redirect( $ref ); exit; } if ( ! empty( $_SERVER['HTTP_REFERER'] ) ) { wp_redirect( $_SERVER['HTTP_REFERER'] ); exit; } $url = wpmu_admin_redirect_add_updated_param( $url ); if ( isset( $_GET['redirect'] ) && isset( $_POST['redirect'] ) && $_GET['redirect'] !== $_POST['redirect'] ) { wp_die( __( 'A variable mismatch has been detected.' ), __( 'Sorry, you are not allowed to view this item.' ), 400 ); } elseif ( isset( $_GET['redirect'] ) ) { if ( 's_' === substr( $_GET['redirect'], 0, 2 ) ) $url .= '&action=blogs&s='. esc_html( substr( $_GET['redirect'], 2 ) ); } elseif ( isset( $_POST['redirect'] ) ) { $url = wpmu_admin_redirect_add_updated_param( $_POST['redirect'] ); } wp_redirect( $url ); exit; }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。