-
Notifications
You must be signed in to change notification settings - Fork 82
activitypub_excerpt_more
github-actions[bot] edited this page Sep 12, 2025
·
15 revisions
Filters the excerpt more value.
/**
* Filters the excerpt more value.
*
* @param string $excerpt_more
* @return string The filtered value.
*/
function my_activitypub_excerpt_more_callback( string $excerpt_more ) {
// Your code here.
return $excerpt_more;
}
add_filter( 'activitypub_excerpt_more', 'my_activitypub_excerpt_more_callback' );
-
string
$excerpt_more
The excerpt more.
\apply_filters( 'activitypub_excerpt_more', '[…]' )
Follow @[email protected] for updates and news.