Hi @smartermethods,
Thanks for reaching out.
You can add the specific code header by calling the wp_head
action hook. I would suggest you add the following sample code into your child theme functions.php
file.
add_action('wp_head', 'your_function_name');
function your_function_name()
{
if(is_single(1234)) //specific page or post id
{
//PASTE HEADER CODE HERE
}
}
You can find more information on how to add the code in Header and Footer from this article: https://kinsta.com/knowledgebase/add-code-wordpress-header-footer/
Remember that the above code will work if copied as it is and don’t conflict with any existing code.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We do not provide support for custom codes that means we can’t fix it in case it conflicts with something in your site nor will we enhance it.
And if you are not proficient with the coding, I would suggest you hire a developer who can assist you to do the customization.
Thanks