Excerpt customization

Posted in: Newspaper
Post count: 27

Hi everybody.
How can I make the excerpt’s ellipsis clickable and eventually replace them with other characters?

I tried both to add the function

function wpse_excerpt_more( $more ) {
    return ' <a href="'. get_permalink( get_the_ID() ) . '">' . __('Read More', 'your-text-domain') . '</a>';
}
add_filter( 'excerpt_more', 'wpse_excerpt_more' );

in the function.php file of the child theme, both to install the plugin Advanced Excerpt but it does not work.
Any suggestions?

Post count: 20688

Hi,

The excerpts will be cut the specified limit, but there will be no clickable link after the cutting process. Some modules display a read more button which will lead to the post page, you could use one of those. There is a list here
https://forum.tagdiv.com/topic/remove-category-label-on-big-grid-slider/

The three dots are defined here if this is helpful to you
https://www.screencast.com/t/GXDFmLVgP

Thanks

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.