Örnek olarak aşağıdaki gibi nasıl olmasını istiyorsan kendine göre düzenle.
<?php if ( is_user_logged_in() ) {?>
Üye olanın göreceği alan kodların..
<center><?php echo get_avatar( $comment, 100 ); ?></center>
<a href="<?php echo get_settings('home'); ?>/wp-admin">ÜYE PANELİ</a>
<a href="<?php echo get_settings('home'); ?>/wp-admin/post-new.php">YENİ KONU EKLE</a>
<a href="<?php echo wp_logout_url( home_url() ); ?>">ÇIKIŞ</a>
<?php } else { ?>
Üye olmayan ziyaretcinin göreceği alan......
<form action="<?php echo get_option('home'); ?>/wp-login.php" method="post">
Kullanıcı Adı: <input type="text" name="log" value="" />
Şifre: <input type="password" name="pwd" value="" />
<input type="hidden" name="redirect_to" value="<?php echo get_option('home'); ?>" />
<a href="<?php echo get_option('home'); ?>/wp-login.php?action=lostpassword" class="sifre classs ">Şifremi Unuttum?</a>
<input type="submit" class="Buton classs" value="" />
</form>
<?php } ?>