add_setting( 'themotion_footer_copyright', array(
'default' => sprintf(
__( 'Proudly powered by %1$s | Theme: themotion powered by %2$s', 'themotion' ),
sprintf( '%s', esc_html__( 'WordPress', 'themotion' ) ),
sprintf( '%s', esc_html__( 'Themeisle', 'themotion' ) )
),
'sanitize_callback' => 'themotion_sanitize_text',
'transport' => 'postMessage',
) );
$wp_customize->add_control( 'themotion_footer_copyright', array(
'label' => esc_html__( 'Copyright', 'themotion' ),
'section' => 'title_tagline',
'priority' => 60,
) );
}