Read more link with excerpts

Hi there

I would like to add a read more link to the Manual excerpts of my Posts in Integrity Stack.

I have tried automatic and Manual excerpts but no read more link is showing up.

Thank you very much for your help.

Hello Felix,

Thanks for reaching out. :slight_smile:

Please take a look at the solution mentioned in following thread.

Thanks.

Hi Prasant

Thank you very much for your recommendation. Sorry… how can I get to this whole thread you 've send me? Can you please send me a link?

Thanks again

Hi there

…found it! Thank you very much for your help!

Hi there

I found the solution in this earlier answer from Rad:

…It will only work on excerpt generated by Wordpress. But since you’re adding excerpts manually (Screen Options > Excerpts) then please check this https://wpmayor.com/add-read-link-manual-excerpts/ too. It could be like this
function manual_excerpt_more( $excerpt ) {
$excerpt_more = ‘’;
if( has_excerpt() ) {
$excerpt_more = ’  …weiter lesen’;
}
return $excerpt . $excerpt_more;
}
add_filter( ‘get_the_excerpt’, ‘manual_excerpt_more’ );

Thank you very much!

Hi Felix,

Glad you found it.

Have a great day! :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.