ich habe einmal die Kommentare in einem theme in ein fieldset gesteckt
PHP
<div class="fieldset">
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
<fieldset>
<legend><a name="respond"></a>Kommentar schreiben:</legend>
<?php if ( $user_ID ) : ?>
Login als [url="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"]<?php echo $user_identity; ?>[/url]. [url="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout"]">Logout »[/url]</p>
<?php else : ?>
<label for="author" >Name <?php if ($req) _e('(required)'); ?></label>
<input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="30" tabindex="400" />
<label for="email" >E-Mail <?php if ($req) _e('(required)'); ?> »bleibt unsichtbar</label>
<input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="30" tabindex="500" />
<label for="url" >Website</label>
<input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="30" tabindex="600" />
<?php endif; ?>
<label for="comment" >Ihr /Dein Beitrag:</label>
<textarea name="comment" id="comment" cols="40%" rows="20" tabindex="800"></textarea>
<input class="submit" name="submit" type="submit" id="submit" tabindex="900" value="absenden" />
<input tabindex="901" type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
<?php do_action('comment_form', $post->ID); ?>
</fieldset>
</form></div>
Alles anzeigen
und in einem anderen theme stehen sie so drin..
PHP
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
<?php if ( $user_ID ) : ?>
Eingeloggt als [url="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"]<?php echo $user_identity; ?>[/url]. [url="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout"]Logout »[/url]</p>
<?php else : ?>
<label for="author">[size="1"]Name <?php if ($req) echo "(unbedingt)"; ?>[/size]</label>
<input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="30" tabindex="100" />
<label for="email">[size="1"]Mail <?php if ($req) echo "(unbedingt-bleibt unsichtbar)"; ?>[/size]</label>
<input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="30" tabindex="200" />
<label for="url">[size="1"]Website[/size]</label>
<input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="30" tabindex="300" />
<?php endif; ?>
<label for="comment">[size="1"]Dein Kommentar:[/size]</label>
<!--
[size="1"][b]XHTML:[/b] Diese tags sind nutzbar: <?php echo allowed_tags(); ?>[/size]</p>-->
<textarea name="comment" id="comment" cols="40%" rows="15" tabindex="400"></textarea>
<input name="submit" type="submit" id="submit" tabindex="500" value="Kommentar senden" />
<input type="hidden" tabindex="600" name="comment_post_ID" value="<?php echo $id; ?>" />
</p>
<?php do_action('comment_form', $post->ID); ?>
</form></div>
Alles anzeigen
hilft Dir das zum Erkennen?
(beide strict)
lG
Monika