Please update!'; if (version_compare($wp_version,"2.5","<")) { exit ($exit_msg); } /* */ // Retrieve Author Data function author_bio_plus() { $a_fname = get_the_author_meta( first_name ); $a_lname = get_the_author_meta( last_name ); $a_email = get_the_author_meta( user_email ); $a_fullname = $a_fname . " " . $a_lname; $a_url = get_the_author_meta( user_url ); $a_bio = get_the_author_meta( user_description ); return "
Author: " .$a_fullname. "
Visit ".$a_fname."'s Website - Email ".$a_fname."
" .$a_bio. "
" ; } // Return the Author Bio Box function authorbioplus_ContentFilter($content) { return $content.author_bio_plus(); } add_filter('the_content', 'authorbioplus_ContentFilter'); ?>