如何使用当前用户作者配置文件的链接预填充表单域?

时间:2017-03-05 作者:Marko I.

我想在我的网站前端添加一个链接,指向正在填写表单的当前用户的个人资料。

也就是说,在表单的“作者配置文件”字段中自动放置当前用户的作者链接,如下所示:示例。com/作者/用户名

我应该在表单字段中包括什么?

1 个回复
SO网友:codiiv
<?php 

$currentUser = get_current_user_id();   //get  currently logged user ID  

$user = get_user_by( \'id\', $currentUser );   // Get the user Object by id

$userUrl = get_bloginfo(\'home\').\'/author/\'.$user->user_login; //Formulate the outout 

echo $userUrl; //echo the output 
?>

相关推荐

无法在WordPress中通过PHP显示图像

我有一个奇怪的问题,当我尝试使用PHP输入图像标记的源代码时,它会在检查器中显示以下错误<img src=(unknown) alt=\"\"> 这个代码片段为我提供了正确的url,通过查看CPanel并粘贴和复制地址进行检查,但当我尝试通过php输入它时,不会显示图像$image = wp_get_attachment_image_src( $post_thumbnail_id); //echo($image[0]); ?> <img src=