Hey,
thanks for reaching out!
Sure, you can have those show on your homepage by going to your WordPress’s Dashboard and under the tab ‘Appearance’-‘Editor’ choose your theme (I think yours is “ladylucktheme”) in the upper right corner. Now click on the ‘content.php’ file, which you can find on the right hand side of your screen. After that, search for the following code in the code editor:
[ Moderator note: Code fixed, please wrap code in backticks or use the code button. ]
<div class="entry-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'ladylucktheme' ) ); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link"><span>' . __( 'Pages:', 'ladylucktheme' ) . '</span>', 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
<?php endif; ?>
Now that you have found this, just add the following code line at the end of it:
<?php wp_related_posts()?>
So, to sum it up, the whole thing should look like this:
<div class=”entry-content”>
<?php the_content( __( ‘Continue reading <span class=”meta-nav”>→</span>’, ‘ladylucktheme’ ) ); ?>
<?php wp_link_pages( array( ‘before’ => ‘<div class=”page-link”><span>’ . __( ‘Pages:’, ‘ladylucktheme’ ) . ‘</span>’, ‘after’ => ‘</div>’ ) ); ?>
</div><!– .entry-content –>
<?php endif; ?>
<?php wp_related_posts()?>
`
Remember to click on the ‘Update File’ button when you’re finished. Visit your blog, refresh the whole page and you should be able to see those related posts over there.
Did it work?
Need any further assistance or do you have any other questions? Let me know — I’ll gladly help!
Take care and have a nice day,
Petra