Author Box Meta Issues

时间:2017-06-06 作者:The WP Intermediate

目前我的作者框是这样的hrad代码→

            <p> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s.Lorem Ipsum is simply dummy text.   <a href="#"> Read More </a> </p>
如果我希望动态获取作者信息,那么我会进行以下更改→

<p> <?php get_the_author_meta(\'description\'); ?> <a href="#"> Read More </a> </p>

但不幸的是这部分<?php get_the_author_meta(\'description\'); ?> 无法获取作者的描述。

AUTHORS BIGRAPHICAL INFORMATION IS ALSO WRITTEN

1 个回复
最合适的回答,由SO网友:socki03 整理而成

get_the_author_meta(\'description\') 用于将内容返回到变量。

你在寻找the_author_meta()

<?php the_author_meta(\'description\'); ?>

结束

相关推荐

Get_Author_Posts_url和Get_the_Author(发布2个帖子)的值不同

警告——我不是程序员,我是一个自学了基本php/wordpress主题的设计师我意识到这是一个非常具体的问题,但我希望专家们能帮助我找到一些我忽视的普遍原则。我正在使用插件发布2篇帖子来生成CPT“演讲者”与wordpress用户之间的关系(相关plugin documentation)然后,我想在演讲人的单一页面上显示相关用户所有博客帖子的链接。我的问题是,get\\u author\\u posts\\u url会返回指向正确相关用户的链接,而get\\u author会获得其他一些看似随机的用户。所