Moderator
Jan Dembowski
(@jdembowski)
Forum Moderator and Brute Squad
What are you trying to change? The text or do you want to add something?
@jam Dembowski I am trying to place my name at the bottom of the site with a copyright logo.
start by creating a child theme http://codex.wordpress.org/Child_Themes
and then you have two choices:
– either:
edit footer.php in the child theme; for example change the following (depending on where exactly you want to add your copyright logo and text):
<?php do_action( 'twentytwelve_credits' ); ?>
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentytwelve' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); ?></a>
– or (depending on where exactly you want to add your copyright logo and text):
create a functions.php in the child theme, and add for example:
add_action( 'twentytwelve_credits', 'copyright_footer' );
function copyright_footer() {
echo '<span class="copy"><img src="http://example.com/example.jpg" alt="" /> Copyright ©'.date('Y').' WhatEver</span>';
}