Thread Starter
Owen
(@owensj)
Hi,
You could do something like this :
add_filter( 'footer_credits', 'my_credits' );
function my_credits($credits) {
$new_credits = sprintf( '<div class="span4 credits"><p> · © %1$s <a href="%2$s" title="%3$s" rel="bookmark">%3$s</a> · Designed by %4$s · Proudly Powered by WordPress</p></div>',
esc_attr( date( 'Y' ) ),
esc_url( home_url() ),
esc_attr(get_bloginfo()),
'<a href="http://www.themesandco.com">Themes & Co</a>'
);
return $new_credits;
}
Thread Starter
Owen
(@owensj)
Where do you add the code you pasted above?
In your functions.php file
Thread Starter
Owen
(@owensj)
It worked but is there any way to align it in the centre as the copyright info is a bit messed up.
Thread Starter
Owen
(@owensj)
Just updated Customizr and it’s looking fine now. Thanks a lot!