2. soru içinde functions.php ye aşağıdaki kodu ekleyin
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)
Yazıları nerede listelemek istiyorsanız aşağıdaki kodu oraya yapıştırın
<?php echo get_related_author_posts(); ?>