Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #217710

    I’ve set the blog posts as Excerpt with Read More link, but all the posts just show with full text. The site is http://www.intechrate.com/blog

    Any other settings that would affect this? Thoughts?

    #217742

    Hey cfleury!

    You can use the read more quicktag: http://en.support.wordpress.com/splitting-content/more-tag/ to create the excerpt or insert following code at the bottom of functions.php:

    
    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">  &rarr;</span></a></div>';
    }
    return $current_post;
    }
    

    to use the “excerpt” field content for the excerpt text.

    Best regards,
    Peter

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Blog posts won't show "Except" with more button’ is closed to new replies.