twentyseventeen.php 282 B

12345678910111213
  1. <?php
  2. /**
  3. * Jetpack Compatibility File
  4. * See: http://jetpack.com/
  5. */
  6. function twentyseventeen_jetpack_setup() {
  7. /**
  8. * Add theme support for geo-location.
  9. */
  10. add_theme_support( 'jetpack-geo-location' );
  11. }
  12. add_action( 'after_setup_theme', 'twentyseventeen_jetpack_setup' );