Quote:
Originally Posted by joeymuk
Ah, I'm pretty new to vb.
I've found the global.php file, do I just add "$vbulletin;" to it somewhere? If you could provide me with steps I'd really appreciate. (I've never been so lost) lol
|
In Wordpress, once you have auto-integrated, if you want to use the $vbulletin object, it should be available to you just about anywhere, but you will probably have to globalize the object first:
Code:
global $vbulletin;
echo "Welcome " . $vbulletin->userinfo['username'];