为每个帖子插入作者简历

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为每个帖子插入作者简历相关的知识,希望对你有一定的参考价值。

  1. function get_author_bio ($content=''){
  2. global $post;
  3.  
  4. $post_author_name=get_the_author_meta("display_name");
  5. $post_author_description=get_the_author_meta("description");
  6. $html="<div class='clearfix' id='about_author'>\n";
  7. $html.="<img width='80' height='80' class='avatar' src='http://www.gravatar.com/avatar.php?gravatar_id=".md5(get_the_author_email()). "&default=".urlencode($GLOBALS['defaultgravatar'])."&size=80&r=PG' alt='PG'/>\n";
  8. $html.="<div class='author_text'>\n";
  9. $html.="<h4>Author: ".$post_author_name."</h4>\n";
  10. $html.= $post_author_description."\n";
  11. $html.="</div>\n";
  12. $html.="<div class='clear'></div>\n";
  13. $content .= $html;
  14. }
  15.  
  16. return $content;
  17. }
  18.  
  19. add_filter('the_content', 'get_author_bio');

以上是关于为每个帖子插入作者简历的主要内容,如果未能解决你的问题,请参考以下文章

寻找水王

如何在 AWS AppSync 中查询关注用户的所有帖子

Mongoose:如何避免重复文件?

MySQL 问题:列索引!

如何为自定义帖子类型创建档案

PHP 如何在WordPress中为帖子作者添加Gravatars