Tagged: archive, category page, elegant blog layout, excerpt, tag page
Hi,
I’m using the elegant blog layout and would like to show at the archive/category/tag pages only my manual (!) excerpt.
I’m using no “more”-tag, just a individual manually written excerpt for each post. Currently the category and tag pages show the full post.
I don’t like to use another plugin for it.
Could you please help me out, what file I need to edit in what way, to:
1. show my manual excerpts plus
2. the read-more-button (like in your lifestyle-blog demo):
at category & tag pages?
Thanks a lot!
EDIT:
I just found this code snippet for the loop-index.php:
https://kriesi.at/support/topic/blog-category-frontpage-view/#post-384823
This works fine and shows my manual excerpt at tag and category pages.
—–> Now I only need in this code snippet a kind of code to show the “read-more-button”.
Thanks in advance!
Okay, I got it with try&error, in the loop-index.php is this snippet some lines below.
So the full code for the manual excerpt AND the read-more-button on category and tag pages is in the loop-index.php around line 33 according to here:
if(is_archive()) {
$blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "excerpt_read_more";
} else {
$blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "content";
}
— SOLVED —