# jetpack/16.2/modules/widgets/milestone.php

Jetpack – WP Security, Backup, Speed, &amp; Growth, version 16.2. 18 lines.

- Page: https://pluginprobe.com/plugins/jetpack/16.2/code/modules/widgets/milestone.php
- Raw: https://pluginprobe.com/plugins/jetpack/16.2/raw/modules/widgets/milestone.php
- Modified: 2025-11-24T17:00:32+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/jetpack/16.2/code/modules/widgets/milestone.php#L10-L20`.

```php
<?php
/**
 * Milestone widget loader.
 *
 * Everything happens within the folder, but Jetpack loads widgets via a widgets/*.php scheme.
 *
 * @package automattic/jetpack
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit( 0 );
}

/**
 * Includes the milestone widget.  This makes it easier to keep the /milestone/ dir content in sync with wpcom.
 */
require_once __DIR__ . '/milestone/milestone.php';

```
