Hi there,
I’ve added the shortcode you’ve provided in other solutions to my functions.php in my child theme,
function add_author() {
if(is_singular(‘post’)) {
echo do_shortcode(’[author title=“About the Author”]’);
}
}
add_action( ‘x_before_the_content_begin’, ‘add_author’, 10 );
But that code doesn’t seem to appear on my website’s single blog posts. If I manually add the shortcode to the post itself, the author box will show but i think the above php isn’t firing? Or maybe it’s something in my temaplte?
Here’s a blog post example: https://sitecompli2.wpengine.com/blog/new-residential-updates-local-law-55-bedbug-reporting/. It should be appearing after the related articles.
Thanks for any insight!

