How to show full post on homepage instead of excerpt?
Generally you will see on home page lists of post. Sometimes there is a need to show full post.
How you will do this?
To show full post on home page do the below changes.
In my case i am using “dazzling” theme. So, my folder structure is like below
Replace the below code in content.php file of your theme,
the_excerpt();
With
the_content();
Above code will display the full code instead of some selected text from the content of your post on homepage.
If you liked this post Or there is some suggestions, Please comment below.