Skip to content

Commit

Permalink
Update customizer-settings.php
Browse files Browse the repository at this point in the history
  • Loading branch information
jessuppi authored Nov 8, 2024
1 parent 3e99d1c commit d1e33e1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions inc/customizer/customizer-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
)
) );

Expand Down Expand Up @@ -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(),
)
) );

Expand Down Expand Up @@ -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(),
)
) );

Expand Down Expand Up @@ -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(),
)
) );

Expand Down Expand Up @@ -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(),
)
) );

Expand Down Expand Up @@ -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(),
)
) );

Expand Down Expand Up @@ -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(),
)
) );

Expand Down Expand Up @@ -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(),
)
) );

Expand Down

0 comments on commit d1e33e1

Please sign in to comment.