用于显示HTML的Wordpress php IF语句

时间:2014-09-29 21:24:29

标签: php wordpress

我将下面的代码添加到我的Wordpress模板中,但它没有处理...

<?php if ( is_user_logged_in() ): ?>
    <p>test</p>
<?php else: ?>
    <p>visitor</p>
<?php endif; ?>

1 个答案:

答案 0 :(得分:0)

请使用以下代码。它会起作用。

<?php if( is_user_logged_in() ) { ?>
        <p>test</p>
<?php } else { ?>
        <p>visitor</p>
<?php } ?>