New Topic

Reply To: Removing footer Credits

Home › Forum › Customization › Removing footer Credits › Reply To: Removing footer Credits

#1989

StartupWP
Keymaster

Update:

<div id="copyright">
<?php echo sprintf( __( '%1$s %2$s %3$s. All Rights Reserved.', 'startup' ), '&copy;', date( 'Y' ), esc_html( get_bloginfo( 'name' ) ) ); echo sprintf( __( ' Built with %1$s and %2$s.', 'startup' ), '<a href="https://startupwp.com/">Startup WordPress Theme</a>', '<a href="http://wordpress.org/">WordPress</a>' ); ?>
</div>

to:

<div id="copyright">
<?php echo sprintf( __( '%1$s %2$s %3$s. All Rights Reserved.', 'startup' ), '&copy;', date( 'Y' ), esc_html( get_bloginfo( 'name' ) ) ); ?>
</div>

We’ve removed:

echo sprintf( __( ' Built with %1$s and %2$s.', 'startup' ), '<a href="https://startupwp.com/">Startup WordPress Theme</a>', '<a href="http://wordpress.org/">WordPress</a>' );

You’ll probably want to setup a child theme to make this customization:

https://startupwp.com/topic/child-theming/