Hybrid Pagination, a plugin for Movable Type ============================================= This plugin provides a means for doing pagination of a template module in Movable Type. It expects the following: * An index template that is statically published, as a PHP file. * A template module that is written to support pagination. From the index template, you would make use of the "PaginateModule" MT tag which is provided by this plugin. It works much like the MT "Include" tag, when used with a "module" attribute. For example: <$MTPaginateModule module="Entries Loop"$> The template module should look something like this (paginates by 20 entries): (place your entry summary markup here) 1
<$mt:Var name="__value__"$> <$mt:Var name="__value__"$>  
This produces a simple single "Older" link for the statically published page which takes you to the hybrid static and dynamic page, which then offers full navigation for the module. If you are paginating something other than a MTEntries tag, you can use the same mechanism, but you may need to gather the 'offset' query parameter manually and use it to display the range of results you desire. Installation ------------- To install this plugin, drop the files included with this plugin into your Movable Type directory (under the plugins/HybridPagination directory). For a guide to installing Movable Type plugins packaged in this way, please visit http://tinyurl.com/6dfsm3 License -------- This plugin has been released under the terms of the GNU Public License, version 2.0.