WordPress函数文档auth_redirect()

判断用户是否登录,没有登录则跳转到登录页面 描述 译文 auth_redirect() 是一个简单函数,要求用…

判断用户是否登录,没有登录则跳转到登录页面

描述

译文

auth_redirect()

是一个简单函数,要求用户访问页面前登录。

缺省用法

页面调用此代码时,代码会查看访问当前页面的用户是否登录。如果用户未登录则将用户重定向至登录页面。登录后可将用户直接转到登录前所访问的页面。

参数

该函数不接受参数。

相关资源

is_user_logged_in(),wp_redirect()

原文

Checks user is logged in, if not it redirects them to login page.

When this code is called from a page, it checks to see if the user viewing the page is logged in. If the user is not logged in, they are redirected to the login page. The user is redirected in such a way that, upon logging in, they will be sent directly to the page they were originally trying to access.

用法

<?php auth_redirect(); ?>

参数

This function accepts no parameters.

返回值

Function redirects or exits, does not return

注意

As a pluggable function, you can redefine it and your version will be used instead.

历史

添加于 版本: 1.5

源文件

auth_redirect() 函数的代码位于 wp-includes/pluggable.php

相关

is_user_logged_in(), wp_redirect()

  • 原文:http://codex.wordpress.org/Function_Reference/auth_redirect
类别:WordPress函数文档

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT