Reply To: Problem with copyright text

Home Forums Support Problem with copyright text Reply To: Problem with copyright text

Home Forums Support Problem with copyright text Reply To: Problem with copyright text

#214122
Tom
Lead Developer
Lead Developer

You could do something like this to remove the customizer control:

add_action( 'after_setup_theme','generate_remove_copyright_control' );
function generate_remove_copyright_control()
{
    remove_action( 'customize_register', 'generate_copyright_customize_register' );
}