How do you remove author credit from child theme
-
Hi,
I’m developing a child theme from the theme Delicate and because I have changed the design a lot I would like to remove the author credit that currently is saying ‘designed by NattyWP’ at the bottom right of all my pages. Are you allowed to do this? If yes, how do you do it?
Would be grateful for any advice
Michelle
https://test.michellehedberg.net/
P.s On the support forum I came across an answer to the same question. It was posted by Frumph a year ago and it said
There’s a span for it you can use a display: none in CSS to remove it.
Or if you’re using a child theme (which you should be) do this:
add_filter(‘comicpress_display_post_author’, ‘custom_remove_post_author’);
function custom_remove_post_author() {
return ”;
}Is this answer still relevant, if yes where do you put this code? In your style sheet, functions.php, on the individual page.php’s… or where…?
- The topic ‘How do you remove author credit from child theme’ is closed to new replies.