Skip to content

i4w_excerpt

This filter hook enables you to apply your own methods to generate an excerpt.

iMember360 will pass the following parameters to your filter function:

ParameterDescription
$excerptThe current excerpt as determined by content and settings.
PHP
function my_i4w_excerpt($excerpt) {
// In this simple example, we trim the current excerpt
// and return it as upper case
return strtoupper(trim($excerpt));
}
add_filter('i4w_excerpt', 'my_i4w_excerpt', 10, 1);