Hi There,
Do you mean just add the author on blog single post pages?
If yes, we can achieve is by adding the following code on your child theme functions.php file. No need for a plugin:
function the_content_with_author_box( $content ){
if( is_singular( 'post' ) ){
$content .= do_shortcode( '[author title="About the author"]' );
}
return $content;
}
add_filter( 'the_content', 'the_content_with_author_box', 11, 1 );
Hope this helps.