Good but problematic ( no way to set excerpt length per widget/shortcode )
-
The author gave a solution ( unrelated to the plugin ) to modify the comment excerpt length (*) ALL ACROSS YOUR SITE ?? , which is not really a solution, is extremely invasive and certainly not wanted by anyone looking to build a coherent user experience on their site.
Users should be able to set different excerpt lengths for each shortcode, that’s the bare minimum for any comment plugin. ( e.g. 10 words on “homepage” excerpts, 20 words on “profile page”, no limit on “all recent comments” page ).
Something like that.
A similar plugin : WordPress comment plus does that, but your plugin is better in terms of styling, so I’ll just have to deal with that shitty excerpt handicap for the time being.
///////////////////////////// the invasive “solution” ///
add_filter( ‘comment_excerpt_length’, function( $number_of_words ) {
return 50;
} );
- The topic ‘Good but problematic ( no way to set excerpt length per widget/shortcode )’ is closed to new replies.