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 5, 2024
1 parent 4325dae commit 298b323
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions inc/customizer/customizer-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -1231,6 +1231,17 @@ function hovercraft_customizer($wp_customize) {
)
) );

// add a separator (horizontal line)
$wp_customize->add_control( new WP_Customize_Control(
$wp_customize,
'hovercraft_separator_1',
array(
'type' => 'hidden',
'section' => 'hovercraft_fonts',
'description' => '<hr>', // output an HTML horizontal line
)
) );

// default font family setting
$wp_customize->add_setting( 'hovercraft_default_font', array(
'default' => 'noto_sans',
Expand Down

0 comments on commit 298b323

Please sign in to comment.