2019-11-15 23:26:29 +01:00
|
|
|
<?php
|
2020-12-10 14:04:11 +01:00
|
|
|
/**
|
|
|
|
|
* Milestone Widget Loader.
|
|
|
|
|
*
|
2021-04-27 08:32:47 +02:00
|
|
|
* @package automattic/jetpack
|
2020-12-10 14:04:11 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The widget class.
|
|
|
|
|
*/
|
|
|
|
|
require_once __DIR__ . '/class-milestone-widget.php';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Registers the widget for use!
|
|
|
|
|
*/
|
2019-11-15 23:26:29 +01:00
|
|
|
function jetpack_register_widget_milestone() {
|
|
|
|
|
register_widget( 'Milestone_Widget' );
|
|
|
|
|
}
|
|
|
|
|
add_action( 'widgets_init', 'jetpack_register_widget_milestone' );
|