Answers for "add html to header wordpress"

CSS
0

wordpress header script add

/* INSIDE YOUR functions.php theme file -> Add to header some code */
add_action('wp_head', 'your_function_name');
function your_function_name(){
?>
PASTE HEADER CODE HERE
<?php
};
Posted by: Guest on February-05-2021
1

wordpress functions add to header

/* INSIDE functions.php */
/* Describe what the code snippet does so you can remember later on */
add_action('wp_head', 'your_function_name');
function your_function_name(){
?>
PASTE HEADER CODE HERE
<?php
};
Posted by: Guest on December-22-2020

Browse Popular Code Answers by Language