PHP用户登录和某些页面

时间:2013-05-01 14:30:55

标签: php wordpress

我在我的header.php中的wordpress主题中使用它来显示我要向未登录的用户显示的html块。

<?php
if ( ! is_user_logged_in() && ! ( is_page( '/register' ) || is_page( '/login' ) ) ) {
echo '';
} else {
echo '<div class="container" style="text-align:center;">
       <div class="well" style="width:1040px;margin:0    auto;background:#fbfbfb;margin-bottom:10px;">
  <h3>Welcome, visitor!</h3>
  <p style="color:#999;">Welcome to autospot.it the automotive social network! <a href="http://autospot.it/about">Learn more...</p>
  <p><a href="http://www.autospot.it/register/" class="btn btn-primary btn-large">Register</a> - or - <a href="http://www.autospot.it/login/" class="btn btn-danger btn-large">Login</a> 
  </div>
      </div>';
} 
?>

这很好但我也希望它不会出现在登录页面和注册页面上。

1 个答案:

答案 0 :(得分:1)

使用is_page检测您的前端登录和注册页面:

<?php
    if ( ! is_user_logged_in() && ! ( is_page( 'register' ) || is_page( 'login' ) ) ) {
        echo '<div>Some stuff here</div>'; // your code
    }
?>