From d1e33e1c3bef02c95ef069909c9600f18644f5a1 Mon Sep 17 00:00:00 2001 From: Jesse Nickles Date: Fri, 8 Nov 2024 18:34:40 +0700 Subject: [PATCH] Update customizer-settings.php --- inc/customizer/customizer-settings.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/inc/customizer/customizer-settings.php b/inc/customizer/customizer-settings.php index 2cf5866..10a9f29 100644 --- a/inc/customizer/customizer-settings.php +++ b/inc/customizer/customizer-settings.php @@ -1268,7 +1268,7 @@ function hovercraft_customizer($wp_customize) { 'section' => 'hovercraft_fonts', 'settings' => 'hovercraft_default_font', 'type' => 'select', - 'choices' => $hovercraft_font_families, + 'choices' => hovercraft_get_font_families(), ) ) ); @@ -1328,7 +1328,7 @@ function hovercraft_customizer($wp_customize) { 'section' => 'hovercraft_fonts', 'settings' => 'hovercraft_site_name_font', 'type' => 'select', - 'choices' => $hovercraft_font_families, + 'choices' => hovercraft_get_font_families(), ) ) ); @@ -1646,7 +1646,7 @@ function hovercraft_customizer($wp_customize) { 'section' => 'hovercraft_fonts', 'settings' => 'hovercraft_main_menu_font', 'type' => 'select', - 'choices' => $hovercraft_font_families, + 'choices' => hovercraft_get_font_families(), ) ) ); @@ -1843,7 +1843,7 @@ function hovercraft_customizer($wp_customize) { 'section' => 'hovercraft_fonts', 'settings' => 'hovercraft_h1_font', 'type' => 'select', - 'choices' => $hovercraft_font_families, + 'choices' => hovercraft_get_font_families(), ) ) ); @@ -1953,7 +1953,7 @@ function hovercraft_customizer($wp_customize) { 'section' => 'hovercraft_fonts', 'settings' => 'hovercraft_h2_font', 'type' => 'select', - 'choices' => $hovercraft_font_families, + 'choices' => hovercraft_get_font_families(), ) ) ); @@ -2062,7 +2062,7 @@ function hovercraft_customizer($wp_customize) { 'section' => 'hovercraft_fonts', 'settings' => 'hovercraft_h3_font', 'type' => 'select', - 'choices' => $hovercraft_font_families, + 'choices' => hovercraft_get_font_families(), ) ) ); @@ -2147,7 +2147,7 @@ function hovercraft_customizer($wp_customize) { 'section' => 'hovercraft_fonts', 'settings' => 'hovercraft_h4_font', 'type' => 'select', - 'choices' => $hovercraft_font_families, + 'choices' => hovercraft_get_font_families(), ) ) ); @@ -2232,7 +2232,7 @@ function hovercraft_customizer($wp_customize) { 'section' => 'hovercraft_fonts', 'settings' => 'hovercraft_h5_font', 'type' => 'select', - 'choices' => $hovercraft_font_families, + 'choices' => hovercraft_get_font_families(), ) ) );