Remove credits from the "Make" theme
-
I want to remove the line “Make: A WordPress template by The Theme Foundry” as well as the RSS button from the (I suppose) footer.
I am creating a child theme from the parent theme “Make”.
Elsewhere on the fora I found the code below. I believe the best option is to add it to the functions.php file in the make-child directory. But it doesn’t seem to work despite clearing my cache and refreshing, etc. I’m wondering if the function ‘tc_credits_display’ doesn’t work for the Make theme?
What is the right code to eliminate and/or add my own credits to the footer of this theme? Thanks!
add_filter(‘tc_credits_display’, ‘my_custom_credits’);
function my_custom_credits(){
echo ‘<div class=”span4 credits”>
<p> · © ‘.esc_attr( date( ‘Y’ ) ).’ ‘.esc_attr(get_bloginfo()).’ · Designed by Themes & Co ·</p></div>’;
}
- The topic ‘Remove credits from the "Make" theme’ is closed to new replies.