Author bio info gone from posts?

I am using xtheme and recently I noticed that the author bio that I had added in wordpress for all the blog posts to see are no longer there under blog posts, and I cannot find an option to enable it back. can you please help on this.

I am using Renew stack

thanks,
Saif

Hi Saif,

Thank you for reaching out to us. To show the Author information below each post, add the following code in your child theme’s functions.php file:

function add_author_shortcode_to_end_of_all_posts() {

  if ( is_singular( 'post' ) ) {
    echo do_shortcode( '[gap size="3em"][author class="man" title="Learn About This Author"]' );
  }

}

add_action( 'x_before_the_content_end', 'add_author_shortcode_to_end_of_all_posts' );

You can learn more about the Author shortcode here https://demo.theme.co/renew-1/shortcodes/author/ to know all the actions and filters in X / Pro please see https://theme.co/docs/actions-filters-and-hooks

Hope this helps!

1 Like

Thanks that worked!

You’re welcome!
We’re glad @Nabeel were able to help you out.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.