Just wondering what the action is to add some text to the head of the page from within a plugin.
i tried add_action('wp_head', 'some_head_function');
and
function some_head_function() {
echo "test";
}
but it didn't work
Just wondering what the action is to add some text to the head of the page from within a plugin.
i tried add_action('wp_head', 'some_head_function');
and
function some_head_function() {
echo "test";
}
but it didn't work
Can someone please help?
This should help you:
http://www.wprecipes.com/how-to-integrate-files-on-your-blog-header
This topic has been closed to new replies.