You can display the Excerpt by selecting “Show excerpt” under the settings page.
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!
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 );