Hi Nadia,
It should be related to the answer from your post here:
But, instead of just having:
// Author Bio below the post content - Single page only.
// =============================================================================
add_action( "x_after_the_content_end", "add_post_shortcode" );
function add_post_shortcode() {
if( is_singular( 'post' ) ){
echo do_shortcode('[author title="About the Author"]');
}
}
// =============================================================================
Please update it to:
// Author Bio below the post content - Single page only.
// =============================================================================
add_action( "x_after_the_content_end", "add_post_shortcode" );
function add_post_shortcode() {
if( is_singular( 'post' ) ){
echo do_shortcode('[author title="About the Author"]');
echo '<h2>Recent Posts</h2>';
echo do_shortcode('[recent_posts count="3"]');
}
}
// =============================================================================
Hope this helps.