No Description

milestone.php 358B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Milestone Widget Loader.
  4. *
  5. * @package automattic/jetpack
  6. */
  7. /**
  8. * The widget class.
  9. */
  10. require_once __DIR__ . '/class-milestone-widget.php';
  11. /**
  12. * Registers the widget for use!
  13. */
  14. function jetpack_register_widget_milestone() {
  15. register_widget( 'Milestone_Widget' );
  16. }
  17. add_action( 'widgets_init', 'jetpack_register_widget_milestone' );