• I guess it’s a pretty simple question, but I do not know what the code should look like when I get to the footer editor.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    What are you trying to change? The text or do you want to add something?

    Thread Starter Martigan

    (@rickhuerta)

    @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 &copy;'.date('Y').' WhatEver</span>';
    }
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Change Footer in (Twenty Twelve) Theme’ is closed to new replies.