after-the-deadline
7 years ago
calypsoify
7 years ago
carousel
5 years ago
comment-likes
8 years ago
comments
7 years ago
contact-form
6 years ago
custom-css
7 years ago
custom-post-types
7 years ago
geo-location
7 years ago
google-analytics
7 years ago
gplus-authorship
6 years ago
infinite-scroll
7 years ago
lazy-images
7 years ago
likes
7 years ago
manage
8 years ago
markdown
7 years ago
masterbar
7 years ago
minileven
7 years ago
photon
10 years ago
photon-cdn
7 years ago
post-by-email
9 years ago
protect
7 years ago
publicize
7 years ago
pwa
8 years ago
related-posts
7 years ago
search
6 years ago
seo-tools
7 years ago
sharedaddy
7 years ago
shortcodes
6 years ago
simple-payments
7 years ago
site-icon
6 years ago
sitemaps
7 years ago
sso
7 years ago
subscriptions
7 years ago
theme-tools
7 years ago
tiled-gallery
7 years ago
verification-tools
7 years ago
videopress
7 years ago
widget-visibility
7 years ago
widgets
6 years ago
woocommerce-analytics
7 years ago
wordads
7 years ago
after-the-deadline.php
8 years ago
blocks.php
7 years ago
carousel.php
9 years ago
comment-likes.php
7 years ago
comments.php
9 years ago
contact-form.php
7 years ago
copy-post.php
7 years ago
custom-content-types.php
9 years ago
custom-css.php
7 years ago
debug.php
10 years ago
enhanced-distribution.php
9 years ago
geo-location.php
7 years ago
google-analytics.php
8 years ago
gplus-authorship.php
11 years ago
gravatar-hovercards.php
8 years ago
holiday-snow.php
8 years ago
infinite-scroll.php
7 years ago
json-api.php
9 years ago
latex.php
9 years ago
lazy-images.php
7 years ago
likes.php
7 years ago
manage.php
9 years ago
markdown.php
9 years ago
masterbar.php
7 years ago
minileven.php
8 years ago
mobile-push.php
10 years ago
module-extras.php
7 years ago
module-headings.php
7 years ago
module-info.php
7 years ago
monitor.php
8 years ago
notes.php
9 years ago
omnisearch.php
8 years ago
photon-cdn.php
7 years ago
photon.php
8 years ago
post-by-email.php
7 years ago
protect.php
7 years ago
publicize.php
7 years ago
pwa.php
8 years ago
random-redirect.php
10 years ago
related-posts.php
9 years ago
search.php
8 years ago
seo-tools.php
7 years ago
sharedaddy.php
7 years ago
shortcodes.php
7 years ago
shortlinks.php
7 years ago
site-icon.php
9 years ago
sitemaps.php
7 years ago
social-links.php
10 years ago
sso.php
7 years ago
stats.php
7 years ago
subscriptions.php
7 years ago
theme-tools.php
7 years ago
tiled-gallery.php
7 years ago
tonesque.php
10 years ago
vaultpress.php
9 years ago
verification-tools.php
9 years ago
videopress.php
8 years ago
widget-visibility.php
9 years ago
widgets.php
7 years ago
wordads.php
8 years ago
wpcc.php
10 years ago
wpgroho.js
10 years ago
theme-tools.php
71 lines
| 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 | function jetpack_load_theme_compat() { |
| 19 | |
| 20 | /** |
| 21 | * Filter theme compat files. |
| 22 | * |
| 23 | * Themes can add their own compat files here if they like. For example: |
| 24 | * |
| 25 | * add_filter( 'jetpack_theme_compat_files', 'mytheme_jetpack_compat_file' ); |
| 26 | * function mytheme_jetpack_compat_file( $files ) { |
| 27 | * $files['mytheme'] = locate_template( 'jetpack-compat.php' ); |
| 28 | * return $files; |
| 29 | * } |
| 30 | * |
| 31 | * @module theme-tools |
| 32 | * |
| 33 | * @since 2.8.0 |
| 34 | * |
| 35 | * @param array Associative array of theme compat files to load. |
| 36 | */ |
| 37 | $compat_files = apply_filters( 'jetpack_theme_compat_files', array( |
| 38 | 'twentyfourteen' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentyfourteen.php', |
| 39 | 'twentyfifteen' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentyfifteen.php', |
| 40 | 'twentysixteen' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentysixteen.php', |
| 41 | 'twentyseventeen' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentyseventeen.php', |
| 42 | 'twentynineteen' => JETPACK__PLUGIN_DIR . 'modules/theme-tools/compat/twentynineteen.php', |
| 43 | ) ); |
| 44 | |
| 45 | _jetpack_require_compat_file( get_stylesheet(), $compat_files ); |
| 46 | |
| 47 | if ( is_child_theme() ) { |
| 48 | _jetpack_require_compat_file( get_template(), $compat_files ); |
| 49 | } |
| 50 | } |
| 51 | add_action( 'after_setup_theme', 'jetpack_load_theme_compat', -1 ); |
| 52 | |
| 53 | |
| 54 | /** |
| 55 | * Requires a file once, if the passed key exists in the files array. |
| 56 | * |
| 57 | * @access private |
| 58 | * @param string $key |
| 59 | * @param array $files |
| 60 | * @return void |
| 61 | */ |
| 62 | function _jetpack_require_compat_file( $key, $files ) { |
| 63 | if ( ! is_string( $key ) ) { |
| 64 | return new WP_Error( 'key_not_string', 'The specified key is not actually a string.', compact( 'key' ) ); |
| 65 | } |
| 66 | |
| 67 | if ( array_key_exists( $key, $files ) && is_readable( $files[ $key ] ) ) { |
| 68 | require_once $files[ $key ]; |
| 69 | } |
| 70 | } |
| 71 |