Hello!
The problem is that posts excerpt don’t work at all. I just read some topics with similar troubles and folowed all pieces of advice but nothing helped to solve it.
Here is the link:
http://smtdp.de/index.php/blog/
tnx
Hey jacobsever!
Please try to follow the suggestion(s) I posted here: https://kriesi.at/support/topic/setting-blog-to-multi-author-big-preview-blog-with-title-excerpt-read-more/#post-221204
If it still doesn’t work please deactivate all third party plugins and check if a plugin causes the issue.
Cheers!
Peter
Tnx for the reply
I added this code but nothing have changed:
add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1);
function avia_category_content_filter($current_post)
{
if(!is_single())
{
$current_post['content'] = get_the_excerpt();
$current_post['content'] .= $current_post['content'].'<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div>';
}
return $current_post;
}
Turning off plugins doesn’t help too ;(
Hi!
Please create me an admin account and post the login credentials as private reply. I need to check why the code doesn’t work for you.
Best regards,
Peter
Hey!
The “Insert PHP” plugin seems to overwrite the excerpt with the post content and this breaks the excerpt function. I deactivated the plugin and the excerpt started to work. I recommend to try another plugin like: http://wordpress.org/plugins/insert-php-code-snippet/
Cheers!
Peter
Big thanks! It works)