Visit this page. All posts in this page have images. you can see images on home page but not in category page. http://www.fun.chanun.com/category/funny-pics How to fix it?
i think the problem is with your archive or category page. Please check your theme folder for archive.php or category.php you can see a code <?php the_excerpt('...'); ?> PHP: Change it to <?php the_content('...'); ?> PHP: I think this will solve your problem.
That's because your category archives are only showing the titles of the posts rather than the whole post. In order to change that you need to make some hard-coding changes to a file called archive.php so in your WordPress admin click: Presentation, then click Theme Editor, then select the file on the right called archive.php (it could be just called Archives) then look for this code: <div class="entry"> <br /> </div> and replace it with this: <div class="entry"> <?php the_content('Read More »'); ?> </div> then click "update file"
Thanks arwen54, I have followed your instructions and it's working now. Green Rep to you. Thanks tarendra for your time and suggestion. Green rep to you too.