Hi,
I would like to display only summery of content in category page but i am getting full content. i didnt find any option in admin panel. how can i do this?
Hi,
I would like to display only summery of content in category page but i am getting full content. i didnt find any option in admin panel. how can i do this?
Either edit your catgeory template(s) and replace <?php the_content();?> with <?php the_excerpt();?> or use the `<!--more--> tag option in the Edit Posts page to insert a break where you want your summary excerpt to finish.
i have this code <?php the_content(__('[Read more]'));?><div style="clear:both;"></div> not <?php the_content();?> and i didn't find any page with name catgeory template(s).
Replace <?php the_content(__('[Read more]'));?> with <?php the_excerpt();?>. Try looking in category.php. If you don't have such a file, make a copy of archive.php, name the new file catgeory.php and make your changes in the new file.
This topic has been closed to new replies.