Lines:
1 to 20 of 20
<?php /** * Module: Theme Tools * * Load code specific to themes or theme tools * This file is special, and is not an actual `module` as such. * It is included by ./module-extras.php * * @package automattic/jetpack */ /* function jetpack_load_theme_tools() – */ add_action( 'init', 'jetpack_load_theme_tools', 30 ); /* function jetpack_load_theme_compat() – Load theme compat file if it exists. */ add_action( 'after_setup_theme', 'jetpack_load_theme_compat', -1 ); /* function _jetpack_require_compat_file() – Requires a file once, if the passed key exists in the files array. */