此代码是 Ultimate Member 插件 profile.php 文件。假设我在上传图片后编辑个人资料图片。上传的图像没有显示在编辑页面中,但保存后显示的是上传的图像。
我在图片下方插入。我上传了图像,但没有显示我是否保存了个人资料页面中显示的 tic 箭头标记图像。
if ( um_is_on_edit_profile() ) { ?>
<form method="post" action="">
<?php } else {
$user_id = get_current_user_id();
um_fetch_user( $user_id );
$custom_url_img = esc_url( um_get_avatar_uri( um_profile( 'profile_photo' ), 190 ) );
?>
<div style="margin: 15px 0px;text-align: center;">
<img src="<?php echo $custom_url_img; ?>" style="border-radius:50%;display: inline;">
</div>