lol2504
Member
Posted 3 years ago #
Hi, just started a new blog recently and trying to figure out how to solve this problem:
I use html to add images into my blog post and everything shows up fine on the main page, but when I click on the categories link in my sidebar all the html from the post disappears.
you can see for yourself here: http://lolpedo.com/blog/
if you click on the "uncategorized" link in the sidebar the image (and all of the html) will disappear.
anyone know what the problem might be?
My guess is that your category file (default is category.php or archive.php) is set to use the excerpt instead of full content. If it is the problem, you can fix:
Look for:
<?php the_excerpt() ?>
and replace with:
<?php the_content() ?>
try resetting your permalinks
admin - settings - permalinks
lol2504
Member
Posted 3 years ago #
I reset my permalinks to default AND altered archive.php and it works now, thank you!
you guys are great. :)