I want to remove the developer info from my footer. My understanding is that I can do this by inserting the following code into my child theme’s functions.php file:
function graphene_remove_credit(){
global $graphene_settings;
$graphene_settings['disable_credit'] = true;
}
add_action( 'template_redirect', 'graphene_remove_credit' );
My question is: does any other code need to be in the child theme functions.php file?
I’ve tried creating the functions.php file, uploading it to: wp-content/themes/GrapheneChild (same location as style.css) and I just get error messages at the top of my page.
Advice, please.