This commit is contained in:
koenemann 2016-11-28 08:58:16 +01:00
parent e649f78b90
commit c6e0d19cb3
1 changed files with 8 additions and 8 deletions

View File

@ -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',
) )