How to add recent post short code in all my single posts?

Can you please provide me with the function? Thanks in Advance

Hey Saswata,

Here’s the code to add the Recent Post after the Content.

add_action('x_after_the_content_end', 'add_recent_post_shortcode');

function add_recent_post_shortcode() {
  if (is_singular('post')) {
    echo do_shortcode('[recent_posts count="3"]');
  }
}

Hope that helps.

1 Like

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