[Resolved] Custom Home Page Excerpt

Home Forums Support [Resolved] Custom Home Page Excerpt

Home Forums Support Custom Home Page Excerpt

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #178137
    Pam Mandel

    Love, love, love the theme, thanks. So much good stuff. Thank you. (www.nerdseyeview.com)

    Can I set a custom excerpt for the home page? Is that something available in the theme or is there a GeneratePress compatible plugin you recommend before I dive into the deep mines of the WP plug-ins library?

    Thanks much.

    #178152
    Tom
    Lead Developer
    Lead Developer

    Glad you’re enjoying it! Nice site ๐Ÿ™‚

    You can set a custom excerpt point using the more tag: https://generatepress.com/knowledgebase/using-the-more-tag/

    To set a completely custom excerpt, you can use the “Excerpt” metabox while editing your post.

    If you don’t see it, click the “Screen Options” tab at the top right of your edit post area, and check the “Excerpt” checkbox.

    Let me know if that helps or not.

    #178276
    Pam

    ALMOST, Tom, thanks.

    I do get the custom excerpts but the “Read more” link is gone. There are instructions here on adding code to get that link back, but…

    1. I don’t see <?php the_excerpt(); ?> in my Loop
    2. Nothing happened when I added the other recommended string to my functions.php.

    Please advise? Thanks so much.

    #178361
    Tom
    Lead Developer
    Lead Developer

    Give this function a try:

    add_filter( 'get_the_excerpt', 'generate_manual_excerpt_more' );
    function generate_manual_excerpt_more( $excerpt ) {
    	$excerpt_more = '';
    	if( has_excerpt() ) {
        	$excerpt_more = '&nbsp;...<a href="' . get_permalink() . '">Read more...</a>';
    	}
    	return $excerpt . $excerpt_more;
    }

    Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/

    #180276
    Pam

    TOTALLY worked. Thanks so much!

    #180294
    Tom
    Lead Developer
    Lead Developer

    You’re welcome ๐Ÿ™‚

    #256033
    Pam Mandel

    NEVER MIND. Solved it.

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.