Kann ich mir vorstellen, dass das komisch rüberkommt :D Ich arbeite auf der Arbeit hauptsächlich mit anderen System und privat programmiere ich sonst immer alles selbst^^ Wordpress ist an manchen Stellen noch nicht so ganz in meinem Schädel. Aber deswegen arbeite ich ja jetzt mal damit, um mich reinzufinden. So ein system sollte erstmal verstanden werden, da stimmst du mir wohl zu oder? Ich hab das Theme und ein paar Widget bisher ohne Hilfe gemacht, da ist mir wohl ein bisschen Hilfe beim aktuellen Problem gegönnt oder? :D hehe
single.php
<?php get_header(); ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<?php //previous_post_link( '%link', '' . _x( '←', 'Previous post link', 'twentyten' ) . ' %title' ); ?>
<?php //next_post_link( '%link', '%title ' . _x( '→', 'Next post link', 'twentyten' ) . '' ); ?>
<div class="headline"><h1><?php the_title(); ?></h1></div>
<div class="post-info">
<div class="post-info-left">
<?php $cats = get_the_category_list(', '); ?>
<?php if (!empty($cats)) { ?>
<?php twentyten_posted_on(); ?> under <?php printf(get_the_category_list(', ')); ?>
<?php } else { ?>
<?php twentyten_posted_on(); ?>
<?php } ?>
</div>
<div class="post-info-right">
<?php comments_popup_link( __( 'No comments', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?>
</div>
<br style="clear: both;" />
</div>
<div class="post-text">
<?php the_content(); ?>
</div>
<?php //wp_link_pages( array( 'before' => '' . __( 'Pages:', 'twentyten' ), 'after' => '' ) ); ?>
<?php twentyten_posted_in(); ?>
<?php //edit_post_link( __( 'Edit', 'twentyten' ), '', '' ); ?>
<?php //previous_post_link( '%link', '' . _x( '←', 'Previous post link', 'twentyten' ) . ' %title' ); ?>
<?php //next_post_link( '%link', '%title ' . _x( '→', 'Next post link', 'twentyten' ) . '' ); ?>
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen
Vielen Dank für diesen Link! Ich werds mir mal anschauen und dann bescheid geben, ob es das Problem behebt :)