如何在_Author_meta(‘Description’)中显示<a>标签属性Target;

时间:2011-11-15 作者:Raheel Ayub

我面临以下问题:

假设用户已使用标记和target \\u blank属性将其推特id粘贴到“Biographical info”文本区域中,但结果为\\u author\\u meta(\'描述\');丢弃了标记的属性目标\\u为空。

有什么解决方案吗?

谢谢

1 个回复
SO网友:Raheel Ayub

似乎没有人有办法!

嗯,我自己找到了解决办法,我希望有一天它会帮助一些人!

首先,你必须安装wordpress插件“无限联系人信息”,它将帮助你在用户配置文件“联系人信息”下添加其他字段,然后在循环单中添加以下代码。php和作者。php:

<?php if(get_the_author_meta(\'user_url\')!=\'\') { ?>
   <a href="<?php the_author_meta(\'user_url\'); ?>" target="_blank">Website</a>
<?php } ?>
注意:对于要显示的每个字段,必须重复上述代码。

The above mentioned solution is to show additional contact info / social network IDs (linked to their pages) for author of the post and link will be open in new window.

结束

相关推荐