I have a website with a custom front page. We're showing the most recent blog on the page and we'd like to show the comments associated with that blog on the front page as well. We're using the "Prototype" theme with a Child Theme.
Here's the code we currently have:
<h2>Plain Talk Blog</h2>
<strong><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></strong>
<?php the_content(); ?>
<?php endforeach; ?>
Thanks!