canonical-urls
3 months ago
carousel
3 weeks ago
comment-likes
7 months ago
comments
1 month ago
custom-post-types
6 days ago
external-media
7 months ago
google-fonts
6 days ago
gravatar
6 years ago
infinite-scroll
6 days ago
likes
6 days ago
markdown
1 month ago
memberships
6 days ago
photon-cdn
6 days ago
plugin-search
1 month ago
post-by-email
7 months ago
related-posts
4 weeks ago
scan
3 months ago
seo-tools
6 days ago
sharedaddy
3 weeks ago
shortcodes
6 days ago
shortlinks
1 month ago
simple-payments
7 months ago
site-icon
7 months ago
sitemaps
1 month ago
stats
6 months ago
subscriptions
6 days ago
theme-tools
6 days ago
tiled-gallery
3 weeks ago
verification-tools
1 month ago
videopress
6 days ago
widget-visibility
1 month ago
widgets
6 days ago
woocommerce-analytics
2 months ago
wordads
6 days ago
wpcom-tos
6 months ago
account-protection.php
2 months ago
blaze.php
7 months ago
blocks.php
7 months ago
canonical-urls.php
4 months ago
carousel.php
7 months ago
comment-likes.php
7 months ago
comments.php
3 months ago
contact-form.php
7 months ago
copy-post.php
1 month ago
custom-content-types.php
2 months ago
google-fonts.php
2 months ago
gravatar-hovercards.php
1 month ago
infinite-scroll.php
7 months ago
json-api.php
7 months ago
latex.php
1 month ago
likes.php
1 month ago
markdown.php
7 months ago
module-extras.php
7 months ago
module-headings.php
6 days ago
module-info.php
4 months ago
monitor.php
4 weeks ago
notes.php
6 days ago
photon-cdn.php
7 months ago
photon.php
7 months ago
plugin-search.php
6 days ago
post-by-email.php
2 months ago
post-list.php
7 months ago
protect.php
2 months ago
publicize.php
7 months ago
related-posts.php
1 month ago
search.php
7 months ago
seo-tools.php
6 days ago
sharedaddy.php
4 months ago
shortcodes.php
7 months ago
shortlinks.php
1 month ago
simple-payments.php
7 months ago
sitemaps.php
7 months ago
sso.php
6 days ago
stats.php
1 month ago
subscriptions.php
6 days ago
theme-tools.php
7 months ago
tiled-gallery.php
7 months ago
vaultpress.php
7 months ago
verification-tools.php
2 months ago
videopress.php
7 months ago
waf.php
7 months ago
widget-visibility.php
7 months ago
widgets.php
7 months ago
woocommerce-analytics.php
7 months ago
wordads.php
7 months ago
wpcom-reader.php
4 months ago
wpgroho.js
1 year ago
theme-tools.php
85 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 | if ( ! defined( 'ABSPATH' ) ) { |
| 13 | exit( 0 ); |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * Conditionally require the Tonesque lib depending on theme support. |
| 18 | */ |
| 19 | function jetpack_load_theme_tools() { |
| 20 | if ( current_theme_supports( 'tonesque' ) ) { |
| 21 | require_once JETPACK__PLUGIN_DIR . '/_inc/lib/tonesque.php'; |
| 22 | } |
| 23 | } |
| 24 | add_action( 'init', 'jetpack_load_theme_tools', 30 ); |
| 25 | |
| 26 | /** |
| 27 | * Load theme compat file if it exists. |
| 28 | */ |
| 29 | function jetpack_load_theme_compat() { |
| 30 | |
| 31 | /** |
| 32 | * Filter theme compat files. |
| 33 | * |
| 34 | * Themes can add their own compat files here if they like. For example: |
| 35 | * |
| 36 | * add_filter( 'jetpack_theme_compat_files', 'mytheme_jetpack_compat_file' ); |
| 37 | * function mytheme_jetpack_compat_file( $files ) { |
| 38 | * $files['mytheme'] = locate_template( 'jetpack-compat.php' ); |
| 39 | * return $files; |
| 40 | * } |
| 41 | * |
| 42 | * @module theme-tools |
| 43 | * |
| 44 | * @since 2.8.0 |
| 45 | * |
| 46 | * @param array Associative array of theme compat files to load. |
| 47 | */ |
| 48 | $compat_files = apply_filters( |
| 49 | 'jetpack_theme_compat_files', |
| 50 | array( |
| 51 | 'twentyfourteen' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentyfourteen.php', |
| 52 | 'twentyfifteen' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentyfifteen.php', |
| 53 | 'twentysixteen' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentysixteen.php', |
| 54 | 'twentynineteen' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentynineteen.php', |
| 55 | 'twentytwenty' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentytwenty.php', |
| 56 | 'twentytwentyone' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentytwentyone.php', |
| 57 | ) |
| 58 | ); |
| 59 | |
| 60 | _jetpack_require_compat_file( get_stylesheet(), $compat_files ); |
| 61 | |
| 62 | if ( is_child_theme() ) { |
| 63 | _jetpack_require_compat_file( get_template(), $compat_files ); |
| 64 | } |
| 65 | } |
| 66 | add_action( 'after_setup_theme', 'jetpack_load_theme_compat', -1 ); |
| 67 | |
| 68 | /** |
| 69 | * Requires a file once, if the passed key exists in the files array. |
| 70 | * |
| 71 | * @access private |
| 72 | * @param string $key The key to check. |
| 73 | * @param array $files Array of files to check in. |
| 74 | * @return void|WP_Error |
| 75 | */ |
| 76 | function _jetpack_require_compat_file( $key, $files ) { |
| 77 | if ( ! is_string( $key ) ) { |
| 78 | return new WP_Error( 'key_not_string', 'The specified key is not actually a string.', compact( 'key' ) ); |
| 79 | } |
| 80 | |
| 81 | if ( array_key_exists( $key, $files ) && is_readable( $files[ $key ] ) ) { |
| 82 | require_once $files[ $key ]; |
| 83 | } |
| 84 | } |
| 85 |