1

我补充说,

<div style="margin:0"><a href="#">Sign in</a> | <a href="#">Register</a> | <a href="#">My Account</a> </div>

在 wordpress 网站的标题处。现在我想为此创建一个函数。如果用户保持登录状态,则只有“我的帐户”将显示超链接,如果用户未登录,则它将显示“登录”和“注册”超链接。

可能是wordpress登录检查PHP代码是,

<?php if ( !is_user_logged_in() ) ?>

但我不确定。

谢谢是提前

4

2 回答 2

1

http://wordpress.org/support/topic/connect-button-to-disappear-on-success-how

关注这个话题。它会帮助你

于 2013-10-06T01:19:10.653 回答
0
<?php
if(!is_user_logged_in()){
?>
<div style="margin:0"><a href="#">Sign in</a> | <a href="#">Register</a>
<?php }else{ ?>
<a href="#">My Account</a> </div>
<?php } ?>
于 2013-10-06T00:30:18.950 回答