Installed excerpt editor plugin, activated it...
Posted to a category, full post shows up...
What settings or files do I edit to automate all posts to categories as excerpts...?
Installed excerpt editor plugin, activated it...
Posted to a category, full post shows up...
What settings or files do I edit to automate all posts to categories as excerpts...?
It only works if/when "the excerpt()" code is used. I use a custom Wordpress loop on my home page to show latest posts from an author named Zac:
<?php query_posts("author_name=Zac&showposts=1"); while (have_posts()) : the_post(); the_excerpt(); endwhile; ?>
The excerpt code can be inserted in any template page such as index.php, page.php, search.php, etc.
You must log in to post.