20 Şubat 2012 Pazartesi

Wordpress Blog Konu Sayfasına Yazar Bölümü Eklemek

Selamlar,

Wordpress blog sitenizde konu sayfanıza girildiğinde alt kısımda yazar bilgilerini görüntülemek için kullanmanız gerek kod öbeği budur.

Yalnızca bu ayrıca bir eklenti gerekmiyor.

[sourcecode language="plain"]
<?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( 'author_bio_avatar_size', 60 ) ); ?>
</div><!-- #author-avatar -->
<div id="author-description">
<h2><?php printf( esc_attr__( 'Hakkında %s'), get_the_author() ); ?></h2>
<?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">&rarr;</span>'), get_the_author() ); ?>
</a>
</div><!-- #author-link -->
</div><!-- #author-description -->
</div><!-- #entry-author-info -->
<?php endif; ?>
[/sourcecode]

Hiç yorum yok: