Quote:
Originally Posted by sifo
That is definitely something I'd like to try and add in the future. I guess my real sticking point right now is how do I make a variable from a plugin to be passed/available for use in the postbit template?
Thanks again.
|
What hook location is your plugin using?
Both the hook evaluation and template evaluation have to be in the same scope. If either one is in a function, it's not going to work.
If you do this, it'll work:
Plugin code:
Code:
$GLOBALS['somevar'] = 'Hey';
In the template:
Code:
Here's my variable: $GLOBALS[somevar]