您可以使用过滤器the_author_$meta
和get_the_author_$meta
(在本例中,$meta是“描述”):
add_filter(\'the_author_decription\', \'custom_about_member\', 10, 2);
add_filter(\'get_the_author_decription\', \'custom_about_member\', 10, 2);
function custom_about_member($description, $userid) {
$about = get_user_meta($userid, \'user_about\', true);
if ($about) {return $about;}
return $description;
}
当然,这取决于作者个人简历的显示位置,使用相关功能获取描述。例如:。
get_the_author_meta(\'description\')
或
get_the_author_description()