Altering/adding footer credits
-
I downloaded Childtheme from Customizr, uploaded it in WordPress and activated it. After that I opend function.php from the Childtheme and paste the copied snippet as described in https://presscustomizr.com/snippet/altering-adding-footer-credits/
Than I changed line 3 as follows, but nothing changed in the footer. What do I wrong?:<?php
/**
add_filter(‘tc_credits_display’, ‘my_custom_credits’, 20);
function my_custom_credits(){
$credits = ‘Developed by kc‘;
$newline_credits = ”;
return ‘
<div class=”span6 credits”>
<p> · © ‘.esc_attr( date( ‘Y’ ) ).’ ‘.esc_attr(get_bloginfo()).’ · ‘.($credits ? $credits : ‘Designed by Press Customizr‘).’ ·’.($newline_credits ? ‘
· ‘.$newline_credits.’ ·’ : ”).'</p> </div>’;
}
*/
- The topic ‘Altering/adding footer credits’ is closed to new replies.