Description
Filters the auto generated post excerpt, if auto excerpts are being used.
Comes at the end of the process, after the $content variable has been truncated. The auto excerpt will be the number of words specified in the plugin options plus the “more” link.
Usage
add_filter( 'wpmem_auto_excerpt', 'my_excerpt_filter' ); function my_excerpt_filter( $excerpt ) { // you can filter the $excerpt, but // be sure to return the result at the end return $excerpt; }
See a list of all filter and action hooks