| 1 |
<?php |
| 2 |
/** |
| 3 |
* Jetpack Compatibility File |
| 4 |
* See: https://jetpack.com/ |
| 5 |
* |
| 6 |
* @package automattic/jetpack |
| 7 |
*/ |
| 8 |
|
| 9 |
/** |
| 10 |
* Add Jetpack theme supports for Twenty Seventeen. |
| 11 |
*/ |
| 12 |
function twentyseventeen_jetpack_setup() { |
| 13 |
/** |
| 14 |
* Add theme support for geo-location. |
| 15 |
*/ |
| 16 |
add_theme_support( 'jetpack-geo-location' ); |
| 17 |
} |
| 18 |
add_action( 'after_setup_theme', 'twentyseventeen_jetpack_setup' ); |
| 19 |
|