Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
メニューリストに「登録」があり、ユーザーがログインすると、「登録」メニューが消えます。
これどうやってするの?
Appearance -> Menus を使用してメニューを作成しました
これを実現するには、テーマで次のコードを使用できます。
<?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
.register-menu