Answers for "how to add script to wordpress header"

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

Code answers related to "how to add script to wordpress header"

Browse Popular Code Answers by Language