kollapsminoriteten/wp-content/plugins/jetpack/modules/theme-tools/compat/twentyseventeen.php

19 lines
377 B
PHP
Raw Normal View History

2019-11-15 23:26:29 +01:00
<?php
/**
* Jetpack Compatibility File
* See: https://jetpack.com/
2022-06-16 14:01:47 +02:00
*
* @package automattic/jetpack
2019-11-15 23:26:29 +01:00
*/
2022-06-16 14:01:47 +02:00
/**
* Add Jetpack theme supports for Twenty Seventeen.
*/
2019-11-15 23:26:29 +01:00
function twentyseventeen_jetpack_setup() {
/**
* Add theme support for geo-location.
*/
add_theme_support( 'jetpack-geo-location' );
}
add_action( 'after_setup_theme', 'twentyseventeen_jetpack_setup' );