Quote:
Originally Posted by Xerosis
The code you posted doesn't work, I am using this code on "global.php" and works but the problem is that changes the font of vbulletin
|
Well, given the code you poster above, I guess the plugin code would have to be:
PHP Code:
ob_start();
require('C://wamp\www\wp-blog-header.php');
define('WP_USE_THEMES', false);
get_header();
$wpheader = ob_get_contents();
ob_end_clean();
vB_Template::preRegister('header', array('wpheader' => $wpheader));
But I don't know, I'm not familiar with wp. I guess there could be some conflict between vb and the wp code that's messing up the font. Maybe someone else can help.