1. sitemden kaynak verince özel bir alan olsun resimdeki gibi ben onun ismini ve linkini vereyim

2. sidebar kısmına yazarları ekleyince resim ve yazarın sitesinin adı geliyor benim istediğim yazarın son yazısı gelsin
lütfen yardım …
2
●255
function get_related_author_posts() {
global $authordata, $post;
$authors_posts = get_posts( array( 'author' => $authordata->ID, 'post__not_in' => array( $post->ID ), 'posts_per_page' => 5 ) );
$output = '<ul>';
foreach ( $authors_posts as $authors_post ) {
$output .= '<li><a href="' . get_permalink( $authors_post->ID ) . '">' . apply_filters( 'the_title', $authors_post->post_title, $authors_post->ID ) . '</a></li>';
}
$output .= '</ul>';
return $output;
}posts_per_page' => 5 (kaç yazı göstermek istiyorsanız ona göre bir değer girin. Şu an 5 tane yazısını listeler)<?php echo get_related_author_posts(); ?>