I want to use the <!--nextpage--> tag to split my posts, but not only is the button 'page' missing in the quicktag panel, but if I manualy enter it in my post it simply doesn't work.
I did some hunting around and discovered that there was a fix for this here:
http://codex.wordpress.org/FAQ_Troubleshooting
under the heading, How do I get the Quicktag <!--nextpage--> back?
Problem is, that fix is for 2.0.x, and things seem to have changed since then. The first part seems to be spot on: ie, uncomment this code in wp-admin/quicktags.js :
/*
edButtons[edButtons.length] =
new edButton('ed_next'
,'page'
,'<!--nextpage-->'
,''
,'p'
,-1
);
*/
but the next part describing what to change in
includes/js/tinymce/plugins/wphelp/editor_plugin.js
doesn't make any sense because the file has changed. I went through the steps up to this point, but all that ended up happening was that all my buttons dissapeared. Curiously, when I preview my post, it shows the split working fine. I thought it might be a space issue (why would wordpress want to disable nextpage in the first place?) so I tried to comment out a few other buttons to give it room, but no joy.
So I'm stuck. And I want <!--nextpage-->. Any help would be appreciated.