I'm trying to develop a WordPress Plugin, and I want it to be executed first thing after the opening <BODY> tag.
I have found the hooks "wp_footer" and "wp_head", but these seem to only be to have the plugin executed in the Footer and <HEAD> sections respectively.
I am wanting to have the plugin-generated code inserted as follows.
CURRENT:
<BODY>
[CONTENT]
WANTED:
<BODY>
[PLUGIN OUTPUT]
[CONTENT]
I would rather not have to make the user insert any tags into the template in order for this plugin to be executed, if possible.
Any ideas, suggestions, etc?