Quantcast
Channel: Topic Tag: footer | WordPress.org
Viewing all articles
Browse latest Browse all 13549

umyob on "Twenty Thirteen Footer Question"

$
0
0

This may not be proper coding, but this solution worked for me. Change this code in footer.php

<?php do_action( 'twentythirteen_credits' ); ?>
 <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentythirteen' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentythirteen' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); ?></a>

to this code (replace with your site info)

<?php do_action( 'twentythirteen_credits' ); ?>
 <a href="YOUR SITE URL HERE" title="YOUR SITE TITLE HERE"><?php printf( __( 'YOUR COPYRIGHT INFORMATION HERE', 'twentythirteen' ), '' ); ?></a>

Viewing all articles
Browse latest Browse all 13549

Trending Articles