Files
php_assessment_2/wp-content/plugins/jetpack/modules/theme-tools/compat/twentyseventeen.php
T

19 lines
377 B
PHP
Raw Normal View History

2025-02-05 23:15:46 +01:00
<?php
/**
* Jetpack Compatibility File
* See: https://jetpack.com/
*
* @package automattic/jetpack
*/
/**
* Add Jetpack theme supports for Twenty Seventeen.
*/
function twentyseventeen_jetpack_setup() {
/**
* Add theme support for geo-location.
*/
add_theme_support( 'jetpack-geo-location' );
}
add_action( 'after_setup_theme', 'twentyseventeen_jetpack_setup' );