/ Published in: PHP

Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
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='clearfix' id='about_author'>\n"; $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');
Comments
