Google Fonts for WordPress - Version 3.0.14

Version Description

Download this release

Release Info

Developer DannyCooper
Plugin Icon 128x128 Google Fonts for WordPress
Version 3.0.14
Comparing to
See all releases

Code changes from version 3.0.13 to 3.0.14

changelog.txt CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  = 3.0.13 =
2
 
3
  * Fix issue where resource hints were being loaded when using local fonts
1
+ = 3.0.14 =
2
+
3
+ * Add support for block-based themes and full site editing.
4
+
5
  = 3.0.13 =
6
 
7
  * Fix issue where resource hints were being loaded when using local fonts
class-olympus-google-fonts.php CHANGED
@@ -39,7 +39,7 @@ class Olympus_Google_Fonts {
39
  */
40
  public function constants() {
41
  if ( ! defined( 'OGF_VERSION' ) ) {
42
- define( 'OGF_VERSION', '3.0.13' );
43
  }
44
 
45
  if ( ! defined( 'OGF_DIR_PATH' ) ) {
39
  */
40
  public function constants() {
41
  if ( ! defined( 'OGF_VERSION' ) ) {
42
+ define( 'OGF_VERSION', '3.0.14' );
43
  }
44
 
45
  if ( ! defined( 'OGF_DIR_PATH' ) ) {
includes/functions.php CHANGED
@@ -57,7 +57,7 @@ function ogf_get_elements() {
57
  'label' => esc_html__( 'Site Title Typography', 'olympus-google-fonts' ),
58
  'description' => esc_html__( 'Select and configure the font for your site title.', 'olympus-google-fonts' ),
59
  'section' => 'ogf_advanced__branding',
60
- 'selectors' => '#site-title, .site-title, #site-title a, .site-title a, #site-logo, #site-logo a, #logo, #logo a, .logo, .logo a',
61
  ),
62
  'ogf_site_description' => array(
63
  'label' => esc_html__( 'Site Description Typography', 'olympus-google-fonts' ),
@@ -69,7 +69,7 @@ function ogf_get_elements() {
69
  'label' => esc_html__( 'Navigation Typography', 'olympus-google-fonts' ),
70
  'description' => esc_html__( 'Select and configure the font for your site navigation.', 'olympus-google-fonts' ),
71
  'section' => 'ogf_advanced__navigation',
72
- 'selectors' => '.menu, .page_item a, .menu-item a',
73
  ),
74
  'ogf_post_page_content' => array(
75
  'label' => esc_html__( 'Content Typography', 'olympus-google-fonts' ),
57
  'label' => esc_html__( 'Site Title Typography', 'olympus-google-fonts' ),
58
  'description' => esc_html__( 'Select and configure the font for your site title.', 'olympus-google-fonts' ),
59
  'section' => 'ogf_advanced__branding',
60
+ 'selectors' => '#site-title, .site-title, #site-title a, .site-title a, #site-logo, #site-logo a, #logo, #logo a, .logo, .logo a, .wp-block-site-title, .wp-block-site-title a',
61
  ),
62
  'ogf_site_description' => array(
63
  'label' => esc_html__( 'Site Description Typography', 'olympus-google-fonts' ),
69
  'label' => esc_html__( 'Navigation Typography', 'olympus-google-fonts' ),
70
  'description' => esc_html__( 'Select and configure the font for your site navigation.', 'olympus-google-fonts' ),
71
  'section' => 'ogf_advanced__navigation',
72
+ 'selectors' => '.menu, .page_item a, .menu-item a, .wp-block-navigation, .wp-block-navigation-item__content',
73
  ),
74
  'ogf_post_page_content' => array(
75
  'label' => esc_html__( 'Content Typography', 'olympus-google-fonts' ),
olympus-google-fonts.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin Name: Fonts Plugin | Google Fonts Typography
6
  * Plugin URI: https://wordpress.org/plugins/olympus-google-fonts/
7
  * Description: The easiest to use Google Fonts Plugin. No coding required. Optimized for Speed. 1000+ font choices.
8
- * Version: 3.0.13
9
  * Author: Fonts Plugin
10
  * Author URI: https://fontsplugin.com/?utm_source=wporg&utm_medium=readme&utm_campaign=description
11
  * Text Domain: olympus-google-fonts
5
  * Plugin Name: Fonts Plugin | Google Fonts Typography
6
  * Plugin URI: https://wordpress.org/plugins/olympus-google-fonts/
7
  * Description: The easiest to use Google Fonts Plugin. No coding required. Optimized for Speed. 1000+ font choices.
8
+ * Version: 3.0.14
9
  * Author: Fonts Plugin
10
  * Author URI: https://fontsplugin.com/?utm_source=wporg&utm_medium=readme&utm_campaign=description
11
  * Text Domain: olympus-google-fonts
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: https://fontsplugin.com/#pricing
5
  Requires at least: 4.0
6
  Tested up to: 5.9
7
  License: GPLv2 or later
8
- Stable tag: 3.0.13
9
 
10
  The easiest to use Google Fonts Plugin. No coding required. Optimized for Speed. 1000+ font choices.
11
 
5
  Requires at least: 4.0
6
  Tested up to: 5.9
7
  License: GPLv2 or later
8
+ Stable tag: 3.0.14
9
 
10
  The easiest to use Google Fonts Plugin. No coding required. Optimized for Speed. 1000+ font choices.
11