add_section( 'blograzzi-advanced-head-tags', array( 'title' => __( 'Custom Tags', 'blograzzi' ), 'panel' => 'blograzzi-advanced', ) ); $wp_customize->add_control( new Blograzzi_Code_Control( $wp_customize, 'blograzzi_settings[head_tags]', array( 'type' => 'textarea', 'section' => 'blograzzi-advanced-head-tags', 'label' => __( 'Code to insert into the element', 'blograzzi' ), 'input_attrs' => array( 'rows' => 3, 'cols' => 60 ) ) ) ); /* =Action Hooks Widget Areas --------------------------------------------------------------------------------------*/ $wp_customize->add_section( 'blograzzi-advanced-widget-hooks', array( 'title' => __( 'Action Hooks Widget Areas', 'blograzzi' ), 'panel' => 'blograzzi-advanced', ) ); $wp_customize->add_control( new Blograzzi_Widget_Hooks_Control( $wp_customize, 'blograzzi_settings[widget_hooks]', array( 'type' => 'textarea', 'section' => 'blograzzi-advanced-widget-hooks', ) ) ); }