add_section( 'stitch_header', array( 'title' => __( 'Theme Options', 'stitch' ), 'priority' => 35, ) ); $wp_customize->add_setting( 'header_position', array( 'default' => 'true', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', ) ); $wp_customize->add_control( 'fix_header_position', array( 'settings' => 'header_position', 'label' => __( 'Fixed Header Position (works best with a short menu and sidebar)', 'stitch' ), 'section' => 'stitch_header', 'type' => 'checkbox', ) ); } add_action( 'customize_register', 'stitch_customize_register' );