Hello, I have installed the X theme, how do I make the author’s bio to show in each post.
Hello @dafowens,
Thanks for asking.
If you wish to show the author profile automatically below each single post page, this will require a template change. You can add following code in child theme function.php
file:
add_filter( 'the_content', 'custom_author_code');
function custom_author_code($content) {
if ( is_single() ) {
return $content . do_shortcode('[author title="About the Author"]');
} else {
return $content;
}
}
To setup child theme you can refer following resources:
https://theme.co/apex/child-themes
Thanks.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.