| 1 |
<?php |
| 2 |
/* |
| 3 |
* Load code specific to themes or theme tools |
| 4 |
* This file is special, and is not an actual `module` as such. |
| 5 |
* It is included by ./module-extras.php |
| 6 |
*/ |
| 7 |
|
| 8 |
function jetpack_load_theme_tools() { |
| 9 |
if ( current_theme_supports( 'tonesque' ) ) { |
| 10 |
jetpack_require_lib( 'tonesque' ); |
| 11 |
} |
| 12 |
} |
| 13 |
add_action( 'init', 'jetpack_load_theme_tools', 30 ); |
| 14 |
|
| 15 |
/** |
| 16 |
* Load theme compat file if it exists. |
| 17 |
* |
| 18 |
* A theme could add its own compat files here if they like. For example: |
| 19 |
* |
| 20 |
* add_filter( 'jetpack_theme_compat_files', 'mytheme_jetpack_compat_file' ); |
| 21 |
* function mytheme_jetpack_compat_file( $files ) { |
| 22 |
* $files['mytheme'] = locate_template( 'jetpack-compat.php' ); |
| 23 |
* return $files; |
| 24 |
* } |
| 25 |
*/ |
| 26 |
function jetpack_load_theme_compat() { |
| 27 |
$compat_files = apply_filters( 'jetpack_theme_compat_files', array( |
| 28 |
'twentyfourteen' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentyfourteen.php', |
| 29 |
'twentyfifteen' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentyfifteen.php', |
| 30 |
) ); |
| 31 |
|
| 32 |
_jetpack_require_compat_file( get_stylesheet(), $compat_files ); |
| 33 |
|
| 34 |
if ( is_child_theme() ) { |
| 35 |
_jetpack_require_compat_file( get_template(), $compat_files ); |
| 36 |
} |
| 37 |
} |
| 38 |
add_action( 'after_setup_theme', 'jetpack_load_theme_compat', -1 ); |
| 39 |
|
| 40 |
|
| 41 |
/** |
| 42 |
* Requires a file once, if the passed key exists in the files array. |
| 43 |
* |
| 44 |
* @access private |
| 45 |
* @param string $key |
| 46 |
* @param array $files |
| 47 |
* @return void |
| 48 |
*/ |
| 49 |
function _jetpack_require_compat_file( $key, $files ) { |
| 50 |
if ( array_key_exists( $key, $files ) && is_readable( $files[ $key ] ) ) { |
| 51 |
require_once $files[ $key ]; |
| 52 |
} |
| 53 |
} |
| 54 |
|