A conditional button 时间:2015-07-23 作者:Aashish Tripathi 我希望在我的站点的一个页面上添加一个按钮,如果用户不是注册用户,则将其重定向到注册页面,如果用户是注册用户,则将其重定向到站点的另一个页面,比如Test\\u页面。我如何做到这一点? 1 个回复 SO网友:Andrew Bartel WordPress提供is_user_logged_in() 功能。文件:https://codex.wordpress.org/Function_Reference/is_user_logged_in您可以这样做:<?php if ( is_user_logged_in() ) { // show button to Test_Page } else { // show button to registration page } ?> 结束 文章导航