How to open full post on WordPress blog when click on category
From Collectivesolver
To open full post on WordPress blog when click on category follow the steps below:
1. Find the 'category.php' file in your /wp-content/themes/the-name-of-theme-you-use
2. Download the file 'category.php'
3. Find the php line <?php the_excerpt(); ?>
4. Comment the php line in case you may need the line in the future <?php /* the_excerpt(); */ ?>
5. Write the next line instead the line above <?php the_content(); ?>
That's it , shuold work.

