I have created a new subdomain (practicals.mrboatwebsolution.com)for all my practicals.
I installed the customizr child and copied the snippet
“<?php
/**
* This is where you can copy and paste your functions !
*/
add_filter(‘tc_credits_display’, ‘my_custom_credits’);
function my_custom_credits(){
$credits = ‘Designed by MrBoat’;
$newline_credits = ”;
return ‘
<div class=”span4 credits”>
<p> · © ‘.esc_attr( date( ‘Y’ ) ).’ ‘.esc_attr(get_bloginfo()).’ · ‘.($credits ? $credits : ‘Designed by Themes & Co‘).’ ·’.($newline_credits ? ‘
· ‘.$newline_credits.’ ·’ : ”).'</p> </div>’;
}
“
into my functions.php and i was able to change the footer credit to Designed by MrBoat. However the “MrBoat” did not appear as a link but rather a simple text.
I went ahead to edit the snippet to:
<?php
/**
* This is where you can copy and paste your functions !
*/
add_filter(‘tc_credits_display’, ‘my_custom_credits’);
function my_custom_credits(){
$credits = ‘Designed by MrBoat’;
$newline_credits = ”;
return ‘
<div class=”span4 credits”>
<p> · © ‘.esc_attr( date( ‘Y’ ) ).’ ‘.esc_attr(get_bloginfo()).’ · ‘.($credits ? $credits : ‘Designed by MrBoat‘).’ ·’.($newline_credits ? ‘
· ‘.$newline_credits.’ ·’ : ”).'</p> </div>’;
}
But still nuthing changed. i still see the simple “MrBoat” text.
What should I do to have link credit and probably have a different color for the link please?