Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WebberZone

    (@webberzone)

    You can display the Excerpt by selecting “Show excerpt” under the settings page.

    Thread Starter ckemp23

    (@ckemp23)

    Hi WebberZone, thanks. I have done that. What I’m asking(sorry, wasn’t clear) is how we turn the excerpt into a link to the post. I’m not sure it’s intuitive for some people to have to click on the thumbnail to view the post. Therefore, I’m trying to present them with another option. thanks!

    Plugin Author WebberZone

    (@webberzone)

    You could potentially try this function in your themes functions.php, but note I have not tested it

    function filter_crp_excerpt( $excerpt, $id ) {
         return '<a href="' . get_permalink( $id ) . '">' . $excerpt . '</a>';
    
    }
    apply_filters( 'filter_crp_excerpt', 'crp_excerpt', 10, 2 );
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Link Excerpt to Post’ is closed to new replies.