Google Fonts for WordPress - Version 2.1.4

Version Description

Download this release

Release Info

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

Code changes from version 2.1.3 to 2.1.4

changelog.txt CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  = 2.1.3 =
2
 
3
  * Fix broken link in readme.
1
+ = 2.1.4 =
2
+
3
+ * Expand sidebar CSS selectors.
4
+
5
  = 2.1.3 =
6
 
7
  * Fix broken link in readme.
includes/functions.php CHANGED
@@ -116,13 +116,13 @@ function ogf_get_elements() {
116
  'label' => esc_html__( 'Headings Typography', 'olympus-google-fonts' ),
117
  'description' => esc_html__( 'Select and configure the font for your sidebar headings.', 'olympus-google-fonts' ),
118
  'section' => 'ogf_advanced__sidebar',
119
- 'selectors' => '.widget-title, .widget-area h1, .widget-area h2, .widget-area h3, .widget-area h4, .widgets-area h5, .widget-area h6',
120
  ),
121
  'ogf_sidebar_content' => array(
122
  'label' => esc_html__( 'Content Typography', 'olympus-google-fonts' ),
123
  'description' => esc_html__( 'Select and configure the font for your sidebar content.', 'olympus-google-fonts' ),
124
  'section' => 'ogf_advanced__sidebar',
125
- 'selectors' => '.widget-area, .widget, .sidebar, #sidebar',
126
  ),
127
  'ogf_footer_headings' => array(
128
  'label' => esc_html__( 'Headings Typography', 'olympus-google-fonts' ),
116
  'label' => esc_html__( 'Headings Typography', 'olympus-google-fonts' ),
117
  'description' => esc_html__( 'Select and configure the font for your sidebar headings.', 'olympus-google-fonts' ),
118
  'section' => 'ogf_advanced__sidebar',
119
+ 'selectors' => '.widget-title, .widget-area h1, .widget-area h2, .widget-area h3, .widget-area h4, .widgets-area h5, .widget-area h6, #secondary h1, #secondary h2, #secondary h3, #secondary h4, .widgets-area h5, #secondary h6',
120
  ),
121
  'ogf_sidebar_content' => array(
122
  'label' => esc_html__( 'Content Typography', 'olympus-google-fonts' ),
123
  'description' => esc_html__( 'Select and configure the font for your sidebar content.', 'olympus-google-fonts' ),
124
  'section' => 'ogf_advanced__sidebar',
125
+ 'selectors' => '.widget-area, .widget, .sidebar, #sidebar, #secondary',
126
  ),
127
  'ogf_footer_headings' => array(
128
  'label' => esc_html__( 'Headings Typography', 'olympus-google-fonts' ),
olympus-google-fonts.php CHANGED
@@ -5,7 +5,7 @@
5
  * Plugin Name: Google Fonts Typography
6
  * Plugin URI: https://wordpress.org/plugins/olympus-google-fonts/
7
  * Description: The easiest to use Google Fonts typography plugin. No coding required. 900+ font choices.
8
- * Version: 2.1.3
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
@@ -18,7 +18,7 @@
18
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
19
  */
20
 
21
- define( 'OGF_VERSION', '2.1.3' );
22
  define( 'OGF_DIR_PATH', plugin_dir_path( __FILE__ ) );
23
  define( 'OGF_DIR_URL', plugin_dir_url( __FILE__ ) );
24
 
5
  * Plugin Name: Google Fonts Typography
6
  * Plugin URI: https://wordpress.org/plugins/olympus-google-fonts/
7
  * Description: The easiest to use Google Fonts typography plugin. No coding required. 900+ font choices.
8
+ * Version: 2.1.4
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
18
  * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
19
  */
20
 
21
+ define( 'OGF_VERSION', '2.1.4' );
22
  define( 'OGF_DIR_PATH', plugin_dir_path( __FILE__ ) );
23
  define( 'OGF_DIR_URL', plugin_dir_url( __FILE__ ) );
24
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: https://fontsplugin.com/#pricing
5
  Requires at least: 4.0
6
  Tested up to: 5.4
7
  License: GPLv2 or later
8
- Stable tag: 2.1.3
9
 
10
  The easiest to use Google Fonts Typography Plugin. No coding required. 900+ font choices.
11
 
5
  Requires at least: 4.0
6
  Tested up to: 5.4
7
  License: GPLv2 or later
8
+ Stable tag: 2.1.4
9
 
10
  The easiest to use Google Fonts Typography Plugin. No coding required. 900+ font choices.
11