Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Hook action

Hook action

function hook_action_wp_head() {
	echo '<strong>HOLA</strong>';
}
add_action( 'wp_head', 'hook_action_wp_head' );