| 1 |
<?php |
| 2 |
/** |
| 3 |
* Milestone widget loader. |
| 4 |
* |
| 5 |
* Everything happens within the folder, but Jetpack loads widgets via a widgets/*.php scheme. |
| 6 |
* |
| 7 |
* @package automattic/jetpack |
| 8 |
*/ |
| 9 |
|
| 10 |
if ( ! defined( 'ABSPATH' ) ) { |
| 11 |
exit( 0 ); |
| 12 |
} |
| 13 |
|
| 14 |
/** |
| 15 |
* Includes the milestone widget. This makes it easier to keep the /milestone/ dir content in sync with wpcom. |
| 16 |
*/ |
| 17 |
require_once __DIR__ . '/milestone/milestone.php'; |
| 18 |
|