I'm trying to make it so I can call a few Wordpress php functions from within VBulletin, but in order to do so, they say I need to add the following code ABOVE the <html> and <head> tags. I don't seem to be able to do this in either the head template or headinclude template. Anyone know where I can?
HTML Code:
<?php include_once('/path/to/wordpress/wp-blog-header.php'); ?><html><head><title>Title Of Your Page</title><?php wp_head(); ?></head><body><?php get_poll(); ?></body></html>
I've been searching through here, vb.com, and wp.com, and can't seem to find how to do this. Thanks in advance for anyone here who can help.