calypsoify
3 years ago
carousel
3 years ago
cloudflare-analytics
4 years ago
comment-likes
5 years ago
comments
3 years ago
contact-form
1 year ago
custom-css
3 years ago
custom-post-types
3 years ago
geo-location
4 years ago
google-analytics
3 years ago
gravatar
6 years ago
infinite-scroll
3 years ago
likes
3 years ago
markdown
3 years ago
masterbar
3 years ago
memberships
3 years ago
photon-cdn
3 years ago
plugin-search
4 years ago
post-by-email
3 years ago
related-posts
3 years ago
scan
3 years ago
seo-tools
3 years ago
sharedaddy
3 years ago
shortcodes
3 years ago
simple-payments
3 years ago
site-icon
4 years ago
sitemaps
3 years ago
sso
3 years ago
stats
3 years ago
subscriptions
3 years ago
theme-tools
3 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
3 years ago
wordads
3 years ago
wpcom-block-editor
3 years ago
wpcom-tos
5 years ago
action-bar.php
3 years ago
blaze.php
3 years ago
carousel.php
4 years ago
comment-likes.php
3 years ago
comments.php
4 years ago
contact-form.php
3 years ago
copy-post.php
3 years ago
custom-content-types.php
4 years ago
custom-css.php
3 years ago
enhanced-distribution.php
4 years ago
geo-location.php
4 years ago
google-analytics.php
4 years ago
google-fonts.php
3 years ago
gravatar-hovercards.php
3 years ago
infinite-scroll.php
3 years ago
json-api.php
5 years ago
latex.php
4 years ago
lazy-images.php
4 years ago
likes.php
3 years ago
markdown.php
4 years ago
masterbar.php
4 years ago
module-extras.php
4 years ago
module-headings.php
3 years ago
module-info.php
3 years ago
monitor.php
4 years ago
notes.php
3 years ago
photon-cdn.php
3 years ago
photon.php
3 years ago
plugin-search.php
3 years ago
post-by-email.php
5 years ago
post-list.php
4 years ago
protect.php
3 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
3 years ago
shortlinks.php
4 years ago
sitemaps.php
4 years ago
sso.php
3 years ago
stats.php
3 years ago
subscriptions.php
3 years ago
theme-tools.php
3 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
3 years ago
widget-visibility.php
4 years ago
widgets.php
3 years ago
woocommerce-analytics.php
5 years ago
wordads.php
5 years ago
wpgroho.js
6 years ago
google-fonts.php
143 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Module Name: Google Fonts (Beta) |
| 4 | * Module Description: A selection of Google fonts for block enabled themes. This feature is still being developed. |
| 5 | * Sort Order: 1 |
| 6 | * Recommendation Order: 2 |
| 7 | * First Introduced: 10.8.0 |
| 8 | * Requires Connection: No |
| 9 | * Auto Activate: No |
| 10 | * Module Tags: Fonts, Recommended |
| 11 | * Feature: Writing |
| 12 | * Additional Search Queries: fonts, webfonts, typography |
| 13 | * |
| 14 | * @package automattic/jetpack |
| 15 | */ |
| 16 | |
| 17 | /** |
| 18 | * Curated list of Google Fonts |
| 19 | * See https://wp.me/p9Jlb4-22P |
| 20 | */ |
| 21 | const JETPACK_GOOGLE_FONTS_LIST = array( |
| 22 | 'Albert Sans', |
| 23 | 'Alegreya', |
| 24 | 'Arvo', |
| 25 | 'Bodoni Moda', |
| 26 | 'Cabin', |
| 27 | 'Chivo', |
| 28 | 'Commissioner', |
| 29 | 'Cormorant', |
| 30 | 'Courier Prime', |
| 31 | 'Crimson Pro', |
| 32 | 'DM Mono', |
| 33 | 'DM Sans', |
| 34 | 'Domine', |
| 35 | 'EB Garamond', |
| 36 | 'Epilogue', |
| 37 | 'Figtree', |
| 38 | 'Fira Sans', |
| 39 | 'Fraunces', |
| 40 | 'IBM Plex Mono', |
| 41 | 'IBM Plex Sans', |
| 42 | 'Inter', |
| 43 | 'Josefin Sans', |
| 44 | 'Jost', |
| 45 | 'Libre Baskerville', |
| 46 | 'Libre Franklin', |
| 47 | 'Literata', |
| 48 | 'Lora', |
| 49 | 'Merriweather', |
| 50 | 'Montserrat', |
| 51 | 'Newsreader', |
| 52 | 'Nunito', |
| 53 | 'Open Sans', |
| 54 | 'Overpass', |
| 55 | 'Petrona', |
| 56 | 'Piazzolla', |
| 57 | 'Playfair Display', |
| 58 | 'Plus Jakarta Sans', |
| 59 | 'Poppins', |
| 60 | 'Raleway', |
| 61 | 'Roboto Slab', |
| 62 | 'Roboto', |
| 63 | 'Rubik', |
| 64 | 'Sora', |
| 65 | 'Source Sans Pro', |
| 66 | 'Source Serif Pro', |
| 67 | 'Space Mono', |
| 68 | 'Texturina', |
| 69 | 'Work Sans', |
| 70 | ); |
| 71 | |
| 72 | /** |
| 73 | * Register a curated selection of Google Fonts. |
| 74 | * |
| 75 | * @return void |
| 76 | */ |
| 77 | function jetpack_add_google_fonts_provider() { |
| 78 | if ( ! function_exists( 'wp_register_webfont_provider' ) || ! function_exists( 'wp_register_webfonts' ) ) { |
| 79 | return; |
| 80 | } |
| 81 | |
| 82 | wp_register_webfont_provider( 'jetpack-google-fonts', '\Automattic\Jetpack\Fonts\Google_Fonts_Provider' ); |
| 83 | |
| 84 | /** |
| 85 | * Curated list of Google Fonts. |
| 86 | * |
| 87 | * @module google-fonts |
| 88 | * |
| 89 | * @since 10.8 |
| 90 | * |
| 91 | * @param array $fonts_to_register Array of Google Font names to register. |
| 92 | */ |
| 93 | $fonts_to_register = apply_filters( 'jetpack_google_fonts_list', JETPACK_GOOGLE_FONTS_LIST ); |
| 94 | |
| 95 | foreach ( $fonts_to_register as $font_family ) { |
| 96 | $fonts = array(); |
| 97 | |
| 98 | $font_italic = array( |
| 99 | 'font-family' => $font_family, |
| 100 | 'font-weight' => '100 900', |
| 101 | 'font-style' => 'normal', |
| 102 | 'font-display' => 'fallback', |
| 103 | 'provider' => 'jetpack-google-fonts', |
| 104 | ); |
| 105 | |
| 106 | $font_normal = array( |
| 107 | 'font-family' => $font_family, |
| 108 | 'font-weight' => '100 900', |
| 109 | 'font-style' => 'italic', |
| 110 | 'font-display' => 'fallback', |
| 111 | 'provider' => 'jetpack-google-fonts', |
| 112 | ); |
| 113 | |
| 114 | // New WP Fonts API format since Gutenberg 14.9 requires keyed array |
| 115 | // See https://github.com/Automattic/jetpack/issues/28063 |
| 116 | // Remove conditional once WP 6.2 is the minimum version (must confirm this made it into 6.2) |
| 117 | if ( class_exists( 'WP_Fonts' ) ) { |
| 118 | $fonts = array( |
| 119 | $font_family => array( $font_normal, $font_italic ), |
| 120 | ); |
| 121 | } elseif ( class_exists( 'WP_Webfonts' ) ) { |
| 122 | $fonts = array( $font_normal, $font_italic ); |
| 123 | } |
| 124 | |
| 125 | // New fonts register function since Gutenberg 15.0 or 15.1 |
| 126 | // See https://github.com/Automattic/jetpack/issues/28063#issuecomment-1387090575 |
| 127 | // Remove conditional once WP 6.2 is the minimum version (must confirm this made it into 6.2) |
| 128 | if ( function_exists( 'wp_register_fonts' ) ) { |
| 129 | wp_register_fonts( $fonts ); |
| 130 | } else { |
| 131 | wp_register_webfonts( $fonts ); |
| 132 | } |
| 133 | } |
| 134 | } |
| 135 | add_action( 'after_setup_theme', 'jetpack_add_google_fonts_provider' ); |
| 136 | |
| 137 | add_filter( 'wp_resource_hints', '\Automattic\Jetpack\Fonts\Utils::font_source_resource_hint', 10, 2 ); |
| 138 | add_filter( 'pre_render_block', '\Automattic\Jetpack\Fonts\Introspectors\Blocks::enqueue_block_fonts', 10, 2 ); |
| 139 | // The priority for the next hook is is set to 22 because it needs to run after Gutenberg's |
| 140 | // re-registration (at priority 22) of the core blocks it de-registers (at the default priority 10), |
| 141 | // otherwise Gutenberg caches an incorrect state. |
| 142 | add_action( 'init', '\Automattic\Jetpack\Fonts\Introspectors\Global_Styles::enqueue_global_styles_fonts', 22 ); |
| 143 |