add_section( 'cursor_options', array( 'title' => __( 'Cursor Options', 'blogmarks' ), 'panel' => 'general_options_panel', ) ); /*Show title hover line*/ $wp_customize->add_setting( 'show_advance_cursor', array( 'default' => $theme_options_defaults['show_advance_cursor'], 'sanitize_callback' => 'blogmarks_sanitize_checkbox', ) ); $wp_customize->add_control( new Blogmarks_Toggle_Control( $wp_customize, 'show_advance_cursor', array( 'label' => __( 'Change Cursor style', 'blogmarks' ), 'description' => __( 'shows mouse cursor with shadow', 'blogmarks' ), 'section' => 'cursor_options', 'priority' => 10, ) ) );