如果您已经用登录用户的url设置了一个自定义字段,那么您可以使用类似于Alexey响应的内容,只是我认为\\u author\\u meta会为当前帖子的作者而不是当前登录用户返回meta字段的内容。此代码将执行您想要的操作:
<?php
if (is_user_logged_in()){
$current_user = wp_get_current_user();
$curr_usr_id = $current_user->ID;
$google_drive_url = get_user_meta($curr_usr_id, \'google_drive_url\', true);
if($google_drive_url != \'\'){
?>
<a href="<?php echo $google_drive_url; ?>">Go To The exclusive Gogle Drive Folder</a>
<?php
}
}
?>