I don’t know if you solved your problem, but it seems to come from the Auto-save when editing a draft : http://wordpress.org/support/topic/309612
Try removing Auto-save (http://codex.wordpress.org/Editing_wp-config.php#Modify_AutoSave_Interval) and see if it’s better.
It’s not really a solution, but it should do the trick for now 🙂
I already use custom query_posts to retrieve my stuff. The question is more : how do I know I have to retrieve all the articles of the custom type “news” ?
Is there any way for me to do something like
<?php if ($_GET["post_type"] == "news") {
// do something
} ?>
(I tried the code above, it doesn’t work…)
Thanks !
Fantastic !
How could I not have been aware of that one…
Thanks a lot, it works 🙂