为每个帖子插入作者简历
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为每个帖子插入作者简历相关的知识,希望对你有一定的参考价值。
function get_author_bio ($content=''){ global $post; $post_author_name=get_the_author_meta("display_name"); $post_author_description=get_the_author_meta("description"); $html.="<div class='author_text'>\n"; $html.="<h4>Author: ".$post_author_name."</h4>\n"; $html.= $post_author_description."\n"; $html.="</div>\n"; $html.="<div class='clear'></div>\n"; $content .= $html; } return $content; } add_filter('the_content', 'get_author_bio');
以上是关于为每个帖子插入作者简历的主要内容,如果未能解决你的问题,请参考以下文章