I'm calling postbit_test via this "parse_templates" hook
PHP Code:
eval('$postbit_test = "' . fetch_template('postbit_test') . '";');
and then just referencing $postbit_test from within the postbit template. Apparently I should be specifying which variables I want to pass before I make the call? I found
this post which seems straightforward enough for a string and a custom variable. Do you know if vB variables will work similarly, or if there's a better way I should be doing it? I'm pretty much going to want the whole $post array available inside postbit_test, and probably $threadinfo and whatever else, too.
edit: nvm, I just tested and $threadinfo already works fine inside postbit_test
edit 2: actually, I lied, I reference $GLOBALS[postbit_test] within the postbit template