我将下面的代码添加到我的Wordpress模板中,但它没有处理...
<?php if ( is_user_logged_in() ): ?>
<p>test</p>
<?php else: ?>
<p>visitor</p>
<?php endif; ?>
答案 0 :(得分:0)
请使用以下代码。它会起作用。
<?php if( is_user_logged_in() ) { ?>
<p>test</p>
<?php } else { ?>
<p>visitor</p>
<?php } ?>