One of the features that I miss the most from WordPress 2.1.x is the “preview ↓” and “edit ↑” jump links that allowed to you move quickly between the edit textarea and the preview iframe.
Matt Cutts managed to add the links back in by adding the following code:
<h2 id=”write-post”><small class=”quickjump”><a href=”#preview-post”><?php _e(’preview ↓’); ?></a></small></h2>
or
<small class=”quickjump”><a href=”#write-post”><?php _e(’edit ↑’); ?></a></small>
But, I can’t get his method to work. Can anyone help? Am I just putting the code in the wrong place/file?


