Author im Template Twenty Ten entfernen
Hallo zusammen,
es gibt zwar schon einige Themen zum Thema Author entfernen, allerdings habe ich es bisher mangels tiefer PHP Kenntnisse nicht geschafft den Author aus den Artikeln im Standard Template von WP 3.0 zu entfernen.
Das hier sollten doch die entsprechenden Zeilen in der single.php sein?:
PHP
<?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their description, show a bio on their entries ?>
<div id="entry-author-info">
<div id="author-avatar">
<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) ); ?>
</div><!-- #author-avatar -->
<div id="author-description">
<?php the_author_meta( 'description' ); ?>
<div id="author-link">
<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>">
<?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentyten' ), get_the_author() ); ?>
</a>
</div><!-- #author-link -->
</div><!-- #author-description -->
</div><!-- #entry-author-info -->
<?php endif; ?>
Alles anzeigen
Vielen Dank schonmal für eure Hilfe!