Home Forums WoodMart support forum add code before the closing

add code before the closing

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #403122

    xirkle
    Participant

    I want to add this snippet of code before the closing </head>.
    How do I do this? Thanks.

    <meta name=”p:domain_verify” content=”add551991282887361728df9bf830974″/>

    #403734

    Luke Nielsen
    Keymaster

    Hello,

    The below code will help you to add this meta to the head tag, please paste it to the functions.php file in your child theme.

    add_action(
    	'wp_head',
    	function() {
    		echo '<meta name="p:domain_verify" content="add551991282887361728df9bf830974"/>';
    	}
    );

    You can also reach out to us if you have any questions.

    Kind Regards

    #404102

    xirkle
    Participant

    Thank you! It worked. šŸ™‚

    #404215

    Luke Nielsen
    Keymaster

    You are welcome.

    In case you need any additional help, Iā€™d be more than happy to assist you.

    Wish you all the best.

    Kind Regards

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘add code before the closing’ is closed to new replies.