sanırım şunu üste alıcaksın
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
<?php if ( is_user_logged_in() ) : ?>
<p>Giriş Yapın veya <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="Log out of this account">» Çıkış Yapın</a></p>
<?php else : ?>
<label for="author">İsminiz <small><?php if ($req) echo "(zorunlu)"; ?></small></label>
<input type="text" name="author" id="author" value="<?php echo esc_attr($comment_author); ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
<label for="email">Mail Adresiniz <small><?php if ($req) echo "(zorunlu)"; ?></small></label>
<input type="text" name="email" id="email" value="<?php echo esc_attr($comment_author_email); ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
<label for="url">Site Adresiniz <small><?php if ($req) echo "(varsa yazınız)"; ?></small></label>
<input type="text" name="url" id="url" value="<?php echo esc_attr($comment_author_url); ?>" size="22" tabindex="3" />
<?php endif; ?>
<textarea name="comment" id="comment" rows="10" tabindex="4" ></textarea><br />
<input name="submit" type="submit" id="commentSubmit" tabindex="5" value="Yorumu Gönder" />
<?php comment_id_fields(); ?>
<?php do_action('comment_form', $post->ID); ?>
</form>