add_section( 'entry_meta_typography_options', array( 'title' => __( 'Entry Meta', 'blogmarks' ), 'panel' => 'typography_options_panel', ) ); // Entry Meta Font. $wp_customize->add_setting( 'entry_meta_font', array( 'default' => $theme_options_defaults['entry_meta_font'], 'sanitize_callback' => 'blogmarks_sanitize_special_select', ) ); $wp_customize->add_control( 'entry_meta_font', array( 'label' => __( 'Entry Meta Font', 'blogmarks' ), 'section' => 'entry_meta_typography_options', 'type' => 'select', 'choices' => blogmarks_get_fonts(), 'priority' => 10, ) ); // Entry Meta Font Weight. $wp_customize->add_setting( 'entry_meta_font_weight', array( 'default' => $theme_options_defaults['entry_meta_font_weight'], 'sanitize_callback' => 'blogmarks_sanitize_select', ) ); $wp_customize->add_control( 'entry_meta_font_weight', array( 'label' => __( 'Entry Meta Font Weight', 'blogmarks' ), 'section' => 'entry_meta_typography_options', 'type' => 'select', 'choices' => array( 'normal' => 'Normal', 'bold' => 'Bold', 'bolder' => 'Bolder', 'lighter' => 'Lighter', '100' => '100', '200' => '200', '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', '800' => '800', '900' => '900', ), 'priority' => 20, ) );