Tambahkan kode di header

/* Describe what the code snippet does so you can remember later on */
add_action('wp_header', 'your_function_name');
function your_function_name(){
?>
PASTE HEADER CODE HERE
<?php
};
Brave Bat