''. esc_html__('Previous Post', 'blog-reflection') . ' ' . ' ',
'next_text' => '' . esc_html__('Next Post', 'blog-reflection') . ' ',
)
);
// Fetch the current post's author ID
$blog_reflection_author_id = get_the_author_meta('ID');
// Fetch the author's avatar URL
$blog_reflection_author_avatar_url = get_avatar_url($blog_reflection_author_id);
// Fetch the author's name
$blog_reflection_author_name = get_the_author_meta('display_name', $blog_reflection_author_id);
// Fetch the author's role
$author_role_author_name = implode(', ', get_user_role($blog_reflection_author_id));
?>