I created a plugin to split a field into multiple pages, without having to do the multi_field pagination trick.
Your URLs will look like http://yoursite.com/site/this-is-the-entry/3
Where this-is-the-entry is your entry, and 3 is the page number. You can split a field into as many pages as you want, it works similar to how Word Press pages an entry into multiple pages. Its meant to be used on only one field like {body} and only on a single entry page.
You can have numbered page navigation, or just next/previous links.
Here is the example code:
{exp:page_field page="{segment_3}" backspace="2"}
{body}
{page_navigation}
<p>total is: {total}</p>
<p>{num_pages}<a href=’{page_num}’>{page_num}</a> | {/num_pages}</p>
<p>
{if has_previous}
<a href=’{title_permalink={my_template_group}/index}{previous}’>Previous</a>
{/if}
{if has_next}
<a href=’{title_permalink={my_template_group}/index}{next}’>Next</a>
{/if}
</p>
{/page_navigation}
{/exp:page_field}
I’ve also included a tiny_mce plugin to make insertion of the required <!--break--> snippet easier.
If you have any problems or suggestions just send me an email: kenrick@thebusypixel.com
