Adding comments to your WordPress home page, or other Wordpres pages is very easy for anyone with coding experience and still not terribly difficult for an absolute newbie.
How to add comments to your WordPress Pages
- Download a fresh version of your wordpress theme files. Using your File Transfer Program look for wp-content/themes/your-theme/
- Open page.php using the text editor of your choice (even notepad will do!).
- Locate the text <?get_header();?> directly below it paste <?php $withcomments = 1 ?>
- Look for <?php endwhile; endif; ?> directly above it paste <?php comments_template(); ?>
- Save, and then upload the file page.php
How to add comments to your WordPress Home Page
- Download a fresh version of your wordpress theme files. Using your File Transfer Program look for wp-content/themes/your-theme/
- Open index.php using the text editor of your choice (even notepad will do!)
- Locate the text <?get_header();?> directly below it paste <?php $withcomments = 1 ?>
- Look for <?php endwhile; ?> directly above it paste <?php comments_template(); ?>
- Save, and then upload the file index.php