Hi, I’m wondering if I have a child theme and need to add header info can I just create a blank file and call it header.php in the child theme? From there just adding any personalization? Or do I need to copy the entire contents, then modify?
I’m just concerned if I copy all of the contents then the header will no longer show new updates from the main theme.
I tired adding the meta information in the head below and it didn’t work. How can I add this in the <head>?
Hi,
You can download a child theme here: https://kriesi.at/support/topic/download-enfold-child-theme/. Then you can add this code to functions.php:
function virtualbis_add_fb_domain_verification(){
?>
Your code goes here
<?php
}
add_action('wp_head', 'virtualbis_add_fb_domain_verification');
Best regards,
Rikard