calypsoify
4 years ago
carousel
4 years ago
cloudflare-analytics
4 years ago
comment-likes
5 years ago
comments
4 years ago
contact-form
3 years ago
custom-css
4 years ago
custom-post-types
4 years ago
geo-location
4 years ago
google-analytics
4 years ago
gravatar
5 years ago
infinite-scroll
4 years ago
likes
4 years ago
markdown
4 years ago
masterbar
3 years ago
memberships
3 years ago
photon
5 years ago
photon-cdn
3 years ago
plugin-search
4 years ago
post-by-email
4 years ago
protect
4 years ago
publicize
3 years ago
related-posts
3 years ago
scan
4 years ago
seo-tools
3 years ago
sharedaddy
3 years ago
shortcodes
4 years ago
simple-payments
3 years ago
site-icon
4 years ago
sitemaps
3 years ago
sso
4 years ago
stats
4 years ago
subscriptions
4 years ago
theme-tools
4 years ago
tiled-gallery
3 years ago
verification-tools
4 years ago
videopress
3 years ago
widget-visibility
3 years ago
widgets
3 years ago
woocommerce-analytics
4 years ago
wordads
4 years ago
wpcom-block-editor
4 years ago
wpcom-tos
5 years ago
carousel.php
4 years ago
comment-likes.php
4 years ago
comments.php
4 years ago
contact-form.php
3 years ago
copy-post.php
4 years ago
custom-content-types.php
4 years ago
custom-css.php
4 years ago
enhanced-distribution.php
4 years ago
geo-location.php
4 years ago
google-analytics.php
4 years ago
google-fonts.php
4 years ago
gravatar-hovercards.php
4 years ago
infinite-scroll.php
4 years ago
json-api.php
5 years ago
latex.php
4 years ago
lazy-images.php
4 years ago
likes.php
4 years ago
markdown.php
4 years ago
masterbar.php
4 years ago
module-extras.php
4 years ago
module-headings.php
4 years ago
module-info.php
3 years ago
monitor.php
4 years ago
notes.php
4 years ago
photon-cdn.php
4 years ago
photon.php
4 years ago
plugin-search.php
5 years ago
post-by-email.php
5 years ago
protect.php
4 years ago
publicize.php
3 years ago
related-posts.php
4 years ago
search.php
4 years ago
seo-tools.php
4 years ago
sharedaddy.php
4 years ago
shortcodes.php
4 years ago
shortlinks.php
4 years ago
sitemaps.php
4 years ago
sso.php
4 years ago
stats.php
4 years ago
subscriptions.php
4 years ago
theme-tools.php
4 years ago
tiled-gallery.php
4 years ago
vaultpress.php
4 years ago
verification-tools.php
5 years ago
videopress.php
4 years ago
waf.php
4 years ago
widget-visibility.php
4 years ago
widgets.php
4 years ago
woocommerce-analytics.php
5 years ago
wordads.php
5 years ago
wpgroho.js
5 years ago
theme-tools.php
82 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Module: Theme Tools |
| 4 | * |
| 5 | * Load code specific to themes or theme tools |
| 6 | * This file is special, and is not an actual `module` as such. |
| 7 | * It is included by ./module-extras.php |
| 8 | * |
| 9 | * @package automattic/jetpack |
| 10 | */ |
| 11 | |
| 12 | /** |
| 13 | * Conditionally require the Tonesque lib depending on theme support. |
| 14 | */ |
| 15 | function jetpack_load_theme_tools() { |
| 16 | if ( current_theme_supports( 'tonesque' ) ) { |
| 17 | jetpack_require_lib( 'tonesque' ); |
| 18 | } |
| 19 | } |
| 20 | add_action( 'init', 'jetpack_load_theme_tools', 30 ); |
| 21 | |
| 22 | /** |
| 23 | * Load theme compat file if it exists. |
| 24 | */ |
| 25 | function jetpack_load_theme_compat() { |
| 26 | |
| 27 | /** |
| 28 | * Filter theme compat files. |
| 29 | * |
| 30 | * Themes can add their own compat files here if they like. For example: |
| 31 | * |
| 32 | * add_filter( 'jetpack_theme_compat_files', 'mytheme_jetpack_compat_file' ); |
| 33 | * function mytheme_jetpack_compat_file( $files ) { |
| 34 | * $files['mytheme'] = locate_template( 'jetpack-compat.php' ); |
| 35 | * return $files; |
| 36 | * } |
| 37 | * |
| 38 | * @module theme-tools |
| 39 | * |
| 40 | * @since 2.8.0 |
| 41 | * |
| 42 | * @param array Associative array of theme compat files to load. |
| 43 | */ |
| 44 | $compat_files = apply_filters( |
| 45 | 'jetpack_theme_compat_files', |
| 46 | array( |
| 47 | 'twentyfourteen' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentyfourteen.php', |
| 48 | 'twentyfifteen' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentyfifteen.php', |
| 49 | 'twentysixteen' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentysixteen.php', |
| 50 | 'twentyseventeen' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentyseventeen.php', |
| 51 | 'twentynineteen' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentynineteen.php', |
| 52 | 'twentytwenty' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentytwenty.php', |
| 53 | 'twentytwentyone' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentytwentyone.php', |
| 54 | ) |
| 55 | ); |
| 56 | |
| 57 | _jetpack_require_compat_file( get_stylesheet(), $compat_files ); |
| 58 | |
| 59 | if ( is_child_theme() ) { |
| 60 | _jetpack_require_compat_file( get_template(), $compat_files ); |
| 61 | } |
| 62 | } |
| 63 | add_action( 'after_setup_theme', 'jetpack_load_theme_compat', -1 ); |
| 64 | |
| 65 | /** |
| 66 | * Requires a file once, if the passed key exists in the files array. |
| 67 | * |
| 68 | * @access private |
| 69 | * @param string $key The key to check. |
| 70 | * @param array $files Array of files to check in. |
| 71 | * @return void|WP_Error |
| 72 | */ |
| 73 | function _jetpack_require_compat_file( $key, $files ) { |
| 74 | if ( ! is_string( $key ) ) { |
| 75 | return new WP_Error( 'key_not_string', 'The specified key is not actually a string.', compact( 'key' ) ); |
| 76 | } |
| 77 | |
| 78 | if ( array_key_exists( $key, $files ) && is_readable( $files[ $key ] ) ) { |
| 79 | require_once $files[ $key ]; |
| 80 | } |
| 81 | } |
| 82 |