2012-04-27 153 views
0

我有菜單列表「註冊」,並且當用戶登錄時,「註冊」菜單消失。註冊菜單wordpress

我該怎麼做?

我用外觀創建菜單 - >菜單

+0

某人如何理解這個問題? – 2012-04-27 22:36:16

回答

0

您可以使用下面的代碼在你的主題來實現這一目標:

<?php 
if (is_user_logged_in()) { 
    echo 'Welcome, registered user!'; 
} else { 
    echo '<a class="register-menu" href="#">Register</a>'; //make sure to add the correct link there. 
} 
?> 

您可以使用類.register-menu

自定義此鏈接樣式