Guest User

Untitled

a guest
Apr 6th, 2013
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. function get_author_bio($content='') {
  2.     global $post;
  3.     if (!is_page()) {
  4.         $post_author_description=get_the_author_meta("description");
  5.         $html="\n";
  6.         $html.="<p><em>";
  7.         $html.= $post_author_description."";
  8.         $html.="</em></p>";
  9.         $content .= $html;
  10.     }
  11.     return $content;
  12. }
  13. add_filter('the_content', 'get_author_bio');
Advertisement
Add Comment
Please, Sign In to add comment