add_section( 'copyright_section', array( 'priority' => 700, 'title' => __('Telif Hakkı Düzeni', 'atlas'), ) ); $wp_customize->add_setting( 'copyright_section_text', array( 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', 'default' => 'Copyright 2017 @ Atlas Responsive Tasarim. Tüm hakları saklıdıır' )); $wp_customize->add_control( 'copyright_section_text', array( 'label' => __( 'Telif Hakkı', 'atlas' ), 'type' => 'textarea', 'section' => 'copyright_section' )); } add_action( 'customize_register', 'atlas_copyright_customizer' );