Front-end Editor: Version 0.9

This version adds post meta editable fields. These are a little different from the others. To add a custom field editable meta, you have to add something like this inside The Loop in you WordPress theme: <?php editable_post_meta($post->ID, ‘my_key’, ‘textarea’); ?> The first argument is the current post id, the second is the custom field [...]

Read full post...

Front-end Editor: Version 0.6

This version makes it possible to also edit tags inline. However, due to a bug* in WordPress, it won’t work on most themes. If you want this feature you will have to make the following modification to your theme: Replace the_tags() with echo get_the_tag_list(). Some fixes for the autogrow script have also been added. Props [...]

Read full post...