- 
                Notifications
    You must be signed in to change notification settings 
- Fork 84
activitypub_preview_template
        github-actions[bot] edited this page Oct 17, 2025 
        ·
        18 revisions
      
    Filter the template used for the ActivityPub preview.
/**
 * Filter the template used for the ActivityPub preview.
 *
 * @param string $activitypub_template 
 * @return string The filtered value.
 */
function my_activitypub_preview_template_callback( string $activitypub_template ) {
    // Your code here.
    return $activitypub_template;
}
add_filter( 'activitypub_preview_template', 'my_activitypub_preview_template_callback' );- 
string$activitypub_templateAbsolute path to the template file.
apply_filters( 'activitypub_preview_template', ACTIVITYPUB_PLUGIN_DIR . '/templates/post-preview.php' )Follow @[email protected] for updates and news.