Merhaba @Berzox,

Vermiş olduğun linkte istediğin yazar kutusuna ait bütün kodlar listelenmiş, hangi sayfalara eklemen gerektiği belirtilmiş.

/* Editör kutusu */
#author-info { background: #eee; padding: 10px; margin: 10px 0 0 0; font-size:12px; overflow: auto; }
#author-font { font-size:19px; }
#author-image { float: left; margin: 0 10px 5px 0; border: 5px solid #DCDCE1; }


Bu kısım sitenin CSS dosyasına eklenmeli.

// Twitter, Facebook ve Erkek-Kadın Profilleri.
function add_twitter_contactmethod( $contactmethods ) {
// Twitter ekle
$contactmethods['twitter'] = 'Twitter';
// Facebook ekle
$contactmethods['facebook'] = 'Facebook';
// Erkek-Kadın Profili ekle
$contactmethods['sex'] = 'Sex(m/f)';
return $contactmethods;
}
add_filter('user_contactmethods','add_twitter_contactmethod',10,1);


Bu kodlar sitenin function dosyasına eklenmeli. tagından önce.





Editör:






if(get_the_author_meta('facebook') || get_the_author_meta('twitter')){
if(get_the_author_meta('sex') == "m"){
?>


}
if(get_the_author_meta('sex') == "f"){
?>


}
if(get_the_author_meta('twitter')){
?>
- Twitter
}
if(get_the_author_meta('facebook') && get_the_author_meta('twitter')){
?>

}
if(get_the_author_meta('facebook')){
?>
- Facebook


}
}
?>



Bu kısımda ise sitede nerede göstermek ıstıyorsan o kısma ait dosyaya dahil etmen yeterli. Yazar kutusu yazıların altında gozukecegınden dolayı single.php eklemen yeterlidir. Single.php de temana göre herhangi bir yere bu kodları ekleyebılırsın.

Kolay gelsin.

Kaynak: http://rooteto.com/wordpress/editor-biyografisi