Within Movable Type plugin methods you can access current context column values through the context stash.
See http://www.movabletype.org/documentation/developer/the-template-context.html
for a rudimental introduction to the concept of template context.
For instance, consider a custom entry template tag usage like this:
This won't work as expected, since MT doesn't substitite template tags
within template tag attributes.
So, using context stash, you can insert a simple template tag
substitution into plugin code.
of course, only template tags without modifiers are recognized.
leave a comment