function show_custom_author_bio_separate( $content ) {

if ( is_single() && function_exists(‘get_field’) ) {

// نام فیلد ACF را اینجا دقیق وارد کنید
$author_array = get_field(‘selected_post_author’);

if ( $author_array ) {

$author_name = $author_array[‘display_name’];
$author_bio = $author_array[‘user_description’];
$author_avatar = get_avatar( $author_array[‘ID’], 90 );

if( !empty($author_bio) ) {
$custom_box = ‘

‘ . $author_avatar . ‘

درباره نویسنده: ‘ . esc_html($author_name) . ‘

‘ . esc_html($author_bio) . ‘

‘;

// چسباندن به انتهای محتوا (که الان شامل باکس دکتر هم هست)
$content .= $custom_box;
}
}
}

return $content;
}

// نکته مهم: عدد ۳۰ باعث می‌شود این کد بعد از دکتر اجرا شود و زیر آن بیفتد
add_filter( ‘the_content’, ‘show_custom_author_bio_separate’, 30 );

Comments are disabled.