https://github.com/holger1411/understrap/issues/163 - Thx @TomKisielewski for reporting
This commit is contained in:
parent
e649f78b90
commit
c6e0d19cb3
|
@ -186,18 +186,18 @@ if ( ! function_exists( 'understrap_theme_customize_register' ) ) {
|
||||||
$wp_customize,
|
$wp_customize,
|
||||||
'understrap_grid_post_columns', array(
|
'understrap_grid_post_columns', array(
|
||||||
'label' => __( 'Grid Post Columns', 'understrap' ),
|
'label' => __( 'Grid Post Columns', 'understrap' ),
|
||||||
'description' => __( 'Choose how many columns to use in grid posts', 'understrap' ),
|
'description' => __( 'Choose how many columns to use', 'understrap' ),
|
||||||
'section' => 'understrap_theme_layout_options',
|
'section' => 'understrap_theme_layout_options',
|
||||||
'settings' => 'understrap_grid_post_columns',
|
'settings' => 'understrap_grid_post_columns',
|
||||||
'type' => 'select',
|
'type' => 'select',
|
||||||
'choices' => array(
|
'choices' => array(
|
||||||
'6' => '6',
|
'6' => '2',
|
||||||
'4' => '4',
|
'4' => '3',
|
||||||
'3' => '3',
|
'3' => '4',
|
||||||
'2' => '2',
|
'2' => '6',
|
||||||
'1' => '1',
|
'12' => '1',
|
||||||
),
|
),
|
||||||
'default' => 6,
|
'default' => 2,
|
||||||
'priority' => '30',
|
'priority' => '30',
|
||||||
'transport' => 'refresh',
|
'transport' => 'refresh',
|
||||||
)
|
)
|
||||||
|
|
Reference in New Issue