Hello,
I have a wordpress blog http://www.seotoolskeyword.com. When I post and click the category button the page open say READ MORE
I wanted to take out this READ MORE function so my views can read the full page . pls advise how can I take out this function.
Thanks
you'll have to determine which template is being used to display your category view based on the heirarchy....
http://codex.wordpress.org/Template_Hierarchy
maybe a category.php or possibly archive.php
But you'll need to swap out in the code where it says the_excerpt for the_content
Try editing your theme's index.php template file and replacing <?php the_excerpt();?> with <?php the_content();?>