theme customizer issue
I have rewrote the code you given with minor changes. Please try this: add_action(‘customize_register’, ‘add_footer_copyright’); function add_footer_copyright($wp_customize) { $wp_customize->add_setting( ‘footer_copyright’, array( ‘default’ => ‘Copyright © 201 – Designed By: Designer Name’, ‘transport’ => ‘postMessage’, ‘capability’ => ‘edit_theme_options’, ) ); $wp_customize->add_control( ‘footer_copyright’, array( ‘label’ => ‘Footer Copyright’, ‘section’ => ‘title_tagline’, ‘settings’ => ‘footer_copyright’, ‘type’ => ‘text’ … Read more