# activitypub/8.0.2/templates/welcome.php

ActivityPub, version 8.0.2. 21 lines.

- Page: https://pluginprobe.com/plugins/activitypub/8.0.2/code/templates/welcome.php
- Raw: https://pluginprobe.com/plugins/activitypub/8.0.2/raw/templates/welcome.php
- Modified: 2025-07-23T13:18:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/activitypub/8.0.2/code/templates/welcome.php#L10-L20`.

```php
<?php
/**
 * ActivityPub Welcome template.
 *
 * @package Activitypub
 */

wp_enqueue_style(
	'activitypub-welcome',
	plugins_url( 'assets/css/activitypub-welcome.css', ACTIVITYPUB_PLUGIN_FILE ),
	array(),
	ACTIVITYPUB_PLUGIN_VERSION
);
?>

<hr class="wp-header-end">

<div class="activitypub-settings activitypub-welcome-page hide-if-no-js">
	<?php do_settings_sections( 'activitypub_welcome' ); ?>
</div>

```
