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!