Archived topic
WordPress excerpt without word wrap
8 replies · Started by MC on January 7, 2019
I have seen a few websites which display WordPress Post excerpt without word wrap. Like in the below picture.
I checked Advanced Excerpt Plugin but it's not doing the job like in the Above picture.
Please guide me with this.
Thanks
Hi there,
have you checked the Filter options in the plugin?
Where is that Option buddy? Can you guide me?
Dashboard > Settings > Excerpt. These are the default settings that should be in place and work for me:

Hey Buddy, Thanks for your Time.
I followed the same settings But ended up here. https://imgur.com/a/S41gWve
I'll be happy to see Continue reading button like previous with the Same Advanced Excerpt enabled, Instead of Read the Rest text.
Here is the Previous: https://imgur.com/a/9ZmjhIR
Oh Man !! I forget that We can write Custom Excerpts in WordPress.
So are you gonna use the Manual (custom) excerpt instead?
If not you can change the read more text in the plugin and we can help style it if you need. Let me know :)
I'm happy to see your reply.
I used this Snippet code. It does the Job.
add_filter( 'wp_trim_excerpt', 'tu_excerpt_metabox_more' );
function tu_excerpt_metabox_more( $excerpt ) {
$output = $excerpt;
if ( has_excerpt() ) {
$output = sprintf( '%1$s <p class="read-more-button-container"><a class="button" href="%2$s">%3$s</a></p>',
$excerpt,
get_permalink(),
__( 'Continue Reading', 'generatepress' )
);
}
return $output;
}
Awesome. Glad you found a solution and thanks for sharing :)