How to show related posts

How do I show 3-4 related posts with thumbnails at the bottom of a blog post?

Also how can I add social share icons at the bottoms of the posts?

Thank you.

Hello @khairul100,

Thanks for writing in!

You can take a look at plugins like WordPress Related Posts.

We suggest you to setup child theme before implementing social share on blog post. To download and setup child theme you can refer following links:

https://theme.co/apex/child-themes

Then add following code in child theme function.php file:

add_action('x_before_the_content_end', function() {
  echo do_shortcode('[share title="Share this Post" facebook="true" twitter="true"]');
});

You can modify the Entry Share shortcode inside the do_shortcode function. See http://demo.theme.co/integrity-1/shortcodes/entry-share/ for sample setups.

Thanks.