Hallo Maxe!
Meine comments.php sieht so aus:
<?php // Do not delete these lines
if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
die ('Bitte diese Seite nicht direkt aufrufen. Danke.');
if (!empty($post->post_password)) { // if there's a password
if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) { // and it doesn't match the cookie
?>
<p class="nocomments"><?php _e("Dieser Beitrag ist passwortgeschützt. Gib das Passwort ein, um die Kommentare anzuzeigen.."); ?><p>
<?php
return;
}
}
/* This variable is for alternating comment background */
$oddcomment = 'alt';
?>
<!-- You can start editing here. -->
<?php if ($comments) : ?>
<h3 id="comments"><?php comments_number('Keine Kommentare', 'Ein Kommentar', '% Kommentare' );?> zu “<?php the_title(); ?>”</h3>
<ol class="commentlist">
<?php $commentnumber = 1?>
<?php foreach ($comments as $comment) : if (get_comment_type() == "comment") : ?>
<li id="comment-<?php comment_ID() ?>" class="<?php echo $oddcomment; /* Style differently if comment author is blog author */ if ($comment->comment_author_email == get_the_author_email()) { echo 'authorcomment'; } ?>">
<?php echo get_avatar( $comment, 32 ); ?>
<div class="cmtinfo"><small class="commentmetadata"></small><cite><?php comment_author_link() ?></cite><em>am <?php comment_date('j. F Y') ?> um <?php comment_time() ?> <?php edit_comment_link('Bearbeiten','',''); ?>
</em><a href="#comment-<?php comment_ID() ?>" title=""><span class="number"><?php echo $commentnumber; $commentnumber++;?></span></a></div>
<?php if ($comment->comment_approved == '0') : ?>
<em>Der Kommentar muss noch freigegeben werden.</em>
<?php endif; ?>
<?php comment_text() ?>
</li>
<?php /* Changes every other comment to a different class */
if ('alt' == $oddcomment) $oddcomment = '';
else $oddcomment = 'alt';
?>
<?php endif; endforeach; ?>
</ol>
<?php foreach ($comments as $comment) : if (get_comment_type() != "comment") : ?>
<h3 id="pings">Trackbacks/Pingbacks</h3>
<ol class="pinglist">
<?php wp_list_comments('type=pings&callback=list_pings'); ?>
</ol>
<?php endif; endforeach; ?>
<?php else : // this is displayed if there are no comments so far ?>
<?php if ('open' == $post-> comment_status) : ?>
<!-- If comments are open, but there are no comments. -->
<?php else : // comments are closed ?>
<!-- If comments are closed. -->
<p class="nocomments">Die Kommentarfunktion ist deaktiviert.</p>
<?php endif; ?>
<?php endif; ?>
<div class="entry">
<p class="posted">
<?php if ($post->ping_status == "open") { ?>
<a href="<?php trackback_url(display); ?>">Trackback URI</a> |
<?php } ?>
<?php if ($post-> comment_status == "open") {?>
<?php comments_rss_link('Kommentare als RSS'); ?>
<?php }; ?>
</p>
</div>
<?php if ('open' == $post-> comment_status) : ?>
<h3 id="respond">Einen Kommentar schreiben</h3>
<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<p>Du musst <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>">angemeldet</a> sein, um kommentieren zu können.</p>
<?php else : ?>
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
<?php if ( $user_ID ) : ?>
<p>Angemeldet als <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Von diesem Konto abmelden') ?>">Abmelden »</a></p>
<?php else : ?>
<p><input type="text" class="textbox" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" />
<label for="author"><small>Name <?php if ($req) _e('(erforderlich)'); ?></small></label></p>
<p><input type="text" class="textbox" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" />
<label for="email"><small>E-Mail (wird nicht veröffentlicht) <?php if ($req) _e('(erforderlich)'); ?></small></label></p>
<p><input type="text" class="textbox" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
<label for="url"><small>Webseite</small></label></p>
<?php endif; ?>
<!--<p><small><strong>XHTML:</strong> You can use these tags: <?php echo allowed_tags(); ?></small></p>-->
<p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
<p>
<input name="submit" type="submit" id="submit" tabindex="5" value="Speichern" />
<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
</p>
<?php do_action('comment_form', $post->ID); ?>
</form>
<?php echo 'Du möchtest noch keinen Kommentar abgeben, aber über neue Kommentare informiert werden? Dann gebe nachfolgend bitte <br />Deine E-Mail-Adresse ein'; show_manual_subscription_form(); ?>
<?php endif; // If registration required and not logged in ?>
<?php endif; // if you delete this the sky will fall on your head ?>
Alles anzeigen
und meine fuctions.php so:
<?php
if ( function_exists('register_sidebar') )
{
register_sidebar(array('name'=>'Linke Sidebar',
'before_widget' => '<li>',
'after_widget' => '</li>',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
register_sidebar(array('name'=>'Rechte Sidebar',
'before_widget' => '<li>',
'after_widget' => '</li>',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
}
// Custom Header Image Support
define('HEADER_TEXTCOLOR', '');
define('HEADER_IMAGE', '%s/img/header.jpg'); // %s is theme dir uri
define('HEADER_IMAGE_WIDTH', 900);
define('HEADER_IMAGE_HEIGHT', 180);
define( 'NO_HEADER_TEXT', true );
function theme_admin_header_style() {
?>
<style type="text/css">
#headimg {
background:#fff url(<?php header_image() ?>) no-repeat center;
height: <?php echo HEADER_IMAGE_HEIGHT; ?>px;
width: <?php echo HEADER_IMAGE_WIDTH; ?>px;
}
#headimg * {
display:none;
}
</style>
<?php
}
function theme_header_style() {
?>
<style type="text/css">
#splash
{
background:url(<?php header_image(); ?>) no-repeat center;
height:<?php echo HEADER_IMAGE_HEIGHT; ?>px;
width:<?php echo HEADER_IMAGE_WIDTH; ?>px;
}
</style>
<?php
}
if ( function_exists('add_custom_image_header') ) {
add_custom_image_header('theme_header_style', 'theme_admin_header_style');
}
?>
<?php
function list_pings($comment) {
$GLOBALS[‘comment’] = $comment;
?>
<li id="comment-<?php comment_ID(); ?>"
title="Externer Seitenaufruf: <?php comment_author(); ?>">
<?php comment_author_link(); ?> -
<?php }
?>
<?php
add_filter('get_comments_number', 'comment_count', 0);
function comment_count( $count ) {
if ( ! is_admin() ) {
global $id;
$comments_by_type = &separate_comments(get_comments('status=approve&post_id=' . $id));
return count($comments_by_type['comment']);
} else {
return $count;
}
}
?>
Alles anzeigen
Gruß
Marcus