Tagged: meta tags
Hello,
I would like to add some meta tags in my header, but Im afraid to make it directly in header.php file, what other way can I have to do it.
Example:
<META NAME=”…..” CONTENT=”……”
Thank you
Hey Junior,
You can use a function in functions.php instead:
function add_header_meta_tags(){
?>
YOUR META TAGS GO HERE
<?php
}
add_action('wp_head', 'add_header_meta_tags');
Best regards,
Rikard
Thank you so much!!