Skip to content

activitypub_excerpt_more

github-actions[bot] edited this page Sep 12, 2025 · 15 revisions

Filters the excerpt more value.

Auto-generated Example

/**
 * 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' );

Parameters

  • string $excerpt_more The excerpt more.

Files

\apply_filters( 'activitypub_excerpt_more', '[…]' )

← All Hooks

Users

Developers

Clone this wiki locally