Without knowing what theme you're using it is a bit difficult to pinpoint it, but 95% of the time is because of the following:
When your blog is displaying the post in the main page it is using the function the_content() ==> This function will parse the html and show you the full content as you want to see it.
And when the post is shown in its category page your blog is using the function the_excerpt() ==> This function will strip the html and result in the problem you're having.
What you need to do is edit your archive.php in the theme folder and replace the the_excerpt() function with the_content() and that should solve your problem.
You will need to do the same for tag.php if your theme uses it... And also to your search.php
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.