I would like to know is it possible to add script right after head tag? I don't want to use add_action('wp_head','function');
So here is the case:
- I have custom fields values for example 'this is the custom field value'
- I want to echo it after head tag
- I want to echo it using functions.php
- I don't want to change any code on my Wordpress theme
so it will be
<head>
this is custom field value
--
--
<?php wp_head(); ?>
Thanks in advance,
Aprillins Fox