Version Description
Dec. 6, 2018, dev time: 5m
- Fix: PHP 5.2 conflict.
Download this release
Release Info
Developer | aristath |
Plugin | Kirki |
Version | 3.0.35.1 |
Comparing to | |
See all releases |
Code changes from version 3.0.35 to 3.0.35.1
- LICENSE +0 -0
- kirki.php +1 -1
- modules/gutenberg/class-kirki-modules-gutenberg.php +7 -4
- readme.txt +7 -1
LICENSE
CHANGED
File without changes
|
kirki.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: The ultimate WordPress Customizer Toolkit
|
6 |
* Author: Aristeides Stathopoulos
|
7 |
* Author URI: http://aristath.github.io
|
8 |
-
* Version: 3.0.35
|
9 |
* Text Domain: kirki
|
10 |
*
|
11 |
* GitHub Plugin URI: aristath/kirki
|
5 |
* Description: The ultimate WordPress Customizer Toolkit
|
6 |
* Author: Aristeides Stathopoulos
|
7 |
* Author URI: http://aristath.github.io
|
8 |
+
* Version: 3.0.35.1
|
9 |
* Text Domain: kirki
|
10 |
*
|
11 |
* GitHub Plugin URI: aristath/kirki
|
modules/gutenberg/class-kirki-modules-gutenberg.php
CHANGED
@@ -240,6 +240,9 @@ class Kirki_Modules_Gutenberg {
|
|
240 |
* @since 3.0.35
|
241 |
*/
|
242 |
public function load_fonts() {
|
|
|
|
|
|
|
243 |
foreach ( $this->configs as $config_id => $args ) {
|
244 |
|
245 |
if ( $this->is_disabled( $args ) ) {
|
@@ -251,16 +254,16 @@ class Kirki_Modules_Gutenberg {
|
|
251 |
|
252 |
$async = new Kirki_Modules_Webfonts_Async(
|
253 |
$config_id,
|
254 |
-
$
|
255 |
-
$
|
256 |
);
|
257 |
|
258 |
$async->webfont_loader();
|
259 |
$async->webfont_loader_script();
|
260 |
|
261 |
$local_fonts = new Kirki_Modules_Webfonts_Local(
|
262 |
-
$
|
263 |
-
$
|
264 |
);
|
265 |
|
266 |
$local_fonts->add_styles();
|
240 |
* @since 3.0.35
|
241 |
*/
|
242 |
public function load_fonts() {
|
243 |
+
|
244 |
+
$modules_webfonts = $this->modules_webfonts;
|
245 |
+
$google_fonts = $this->google_fonts;
|
246 |
foreach ( $this->configs as $config_id => $args ) {
|
247 |
|
248 |
if ( $this->is_disabled( $args ) ) {
|
254 |
|
255 |
$async = new Kirki_Modules_Webfonts_Async(
|
256 |
$config_id,
|
257 |
+
$modules_webfonts::get_instance(),
|
258 |
+
$google_fonts::get_instance()
|
259 |
);
|
260 |
|
261 |
$async->webfont_loader();
|
262 |
$async->webfont_loader_script();
|
263 |
|
264 |
$local_fonts = new Kirki_Modules_Webfonts_Local(
|
265 |
+
$modules_webfonts::get_instance(),
|
266 |
+
$google_fonts::get_instance()
|
267 |
);
|
268 |
|
269 |
$local_fonts->add_styles();
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: customizer,options framework, theme, mods, toolkit, gutenberg
|
|
4 |
Donate link: https://aristath.github.io/donate
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 5.0
|
7 |
-
Stable tag: 3.0.35
|
8 |
License: MIT
|
9 |
License URI: https://opensource.org/licenses/MIT
|
10 |
|
@@ -33,6 +33,12 @@ If you want to integrate Kirki in your theme or plugin, please read the instruct
|
|
33 |
|
34 |
== Changelog ==
|
35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
= 3.0.35 =
|
37 |
|
38 |
Dec. 6, 2018, dev time: 15h
|
4 |
Donate link: https://aristath.github.io/donate
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 5.0
|
7 |
+
Stable tag: 3.0.35.1
|
8 |
License: MIT
|
9 |
License URI: https://opensource.org/licenses/MIT
|
10 |
|
33 |
|
34 |
== Changelog ==
|
35 |
|
36 |
+
= 3.0.35.1 =
|
37 |
+
|
38 |
+
Dec. 6, 2018, dev time: 5m
|
39 |
+
|
40 |
+
* Fix: PHP 5.2 conflict.
|
41 |
+
|
42 |
= 3.0.35 =
|
43 |
|
44 |
Dec. 6, 2018, dev time: 15h
|