Replies: 0
How do we change the copyright text in the footer?
I can see in the code that it is an option, but I can’t find where I can actually change the option?
I mean this:
if ( ! empty( $responsive_options['copyright_textbox'] ) ) {
esc_attr_e( ' © ', 'responsive' );
echo esc_attr( gmdate( ' Y' ) );
echo esc_html( ' ' . $responsive_options['copyright_textbox'] );
} else {
esc_attr_e( '© ', 'responsive' );
echo esc_attr( gmdate( 'Y' ) );
}
Where is the “copyright_textbox” ?