cabrerahector / wordpress-popular-posts

WordPress Popular Posts - A highly customizable WordPress widget that displays your most popular posts.
https://wordpress.org/plugins/wordpress-popular-posts/
GNU General Public License v2.0
279 stars 83 forks source link

Add filter to customize endings of trimmed content #201

Closed cabrerahector closed 5 years ago

cabrerahector commented 5 years ago

By default, WPP appends the ellipsis character (...) at the end of trimmed titles/excerpts. It'd be nice if there was a filter to customize that from outside the plugin. Something like:

function new_excerpt_more($more) {
    return '[...]';
}
add_filter('wpp_excerpt_more', 'new_excerpt_more');