I want to show a whole post on my home page rather than just a preview, forcing ythe visitor to click on the title to view it all. Does anyone know how to do this? Thanks, Jackson
Hi Jackson Kelly, To display full post instead of post excerpts on your home page, you can perform the following steps: 1. Backup your index.php before make any changes. 2. Now go to index.php and search for this keyword "the_excerpt" 3. If the keyword found, then replace with "the_content" Please let me know whether it works for your theme. Regards, Alvin
@jacksonkelly - Edit "index.php" -> delete <?php the_content(); ?> -> you will replaced with: <?php the_excerpt(); ?> Good luck!