WordPress 2.7 is not due till at least end November. However you can always get a sneak peak of the freshly redesigned admin together with other cool features in Beta 2. For theme developers, are your themes going to take advantage of the new commenting features like paging and threading? Will it be 2.7 capable?
Up till 2.6.x, AJAX commenting has been rather straight forward. A successfully submitted comment will be added as the latest. However with the new enhancements in 2.7, things are just going to get slightly more complicated.
Threading only applies if you are replying to a comment. It would nest your reply a level deeper. While this is extremely useful in keeping track of a comment conversation, this is where the difficulties it poses to AJAX commenting really start to show.
When a comment is successfully posted, is it replying to any comment? Once that is out of the way, we have to then find out whether it is replying to the original comment or to another reply (another level deeper) and it goes on. This will no doubt be causing quite a stirring headache. But of course you could always tweak the number of levels you want to enable threaded comments.
Imagine reading through more than 200 comments in a post? Put me in that position and I would probably close the window before I even got started. Pagination comes as a very handy enhancement especially in scenarios like this. And unlike threading, it does not really pose much of an opposing block to AJAX commenting.
There is a discussion setting in the admin to decide how many comments you want to break into pages and which page should be shown by default. A reply to a comment is not considered in that count, only a non threaded comment is; in other words a non-reply comment. However should the maximum number of comments for a page be reached, you should be inserting the newly posted one on the next page instead.
How would you tackle AJAX commenting in WordPress 2.7? I already have an idea on how I would for MiniMoo 1.3.
Darran Low is a 22 year old sports enthusiast currently pursuing a Bachelor degree in Computer Science at the University of Adelaide and aspires to become a Web Developer in the near future. 


I am working about it,I find that’s very hard.
I have actually done it, but even if there are no problems encountered yet, I still need to work on improving it.
are these comments ajax based?
Yes the comments on the MiniMoo WordPress theme is ajax-based. However the current comments on the current theme you are seeing is not.
May I use this feature to my theme?
You can modify your theme to include the new comment advancements but you must be running WordPress 2.7.
Very nice but why have you used mootools :>?
MooTools is a very neat and compact framework, one which I like very much and prefer to the others like JQuery and Script.acul.ous. That’s why I am using it.
MooTools seems server side is it not?
It is a Javascript library and generally client side. However I am using AJAX to connect to WordPress’s backend to post comments.
sorry, test only