add_section( 'poseidon_section_upgrade', array( 'title' => esc_html__( 'More Features', 'poseidon' ), 'priority' => 70, 'panel' => 'poseidon_options_panel', ) ); // Add custom Upgrade Content control. $wp_customize->add_setting( 'poseidon_theme_options[upgrade]', array( 'default' => '', 'type' => 'option', 'transport' => 'refresh', 'sanitize_callback' => 'esc_attr', ) ); $wp_customize->add_control( new BlueMotion_Customize_Upgrade_Control( $wp_customize, 'poseidon_theme_options[upgrade]', array( 'section' => 'poseidon_section_upgrade', 'settings' => 'poseidon_theme_options[upgrade]', 'priority' => 1, ) ) ); } add_action( 'customize_register', 'poseidon_customize_register_upgrade_settings' );