Custom Field Images: Version 1.9

Finally, an update to my most popular plugin. Here is what’s happened: If you’re writing a post and you upload an image, The (Insert CFI) button will be there. This is probably the most expected feature. Unfortunately, if you’re using the flash uploader, the button won’t appear immediately. There is now a single admin page, [...]

Read full post...

scbFramework: Introducing scbFramework

While developing plugins for WordPress, I found that one of the most time-consuming and error prone tasks was creating user-friendly settings pages. That is how this framework was born. It’s basically a set of extensible classes that make plugin development faster. I already use it in most of my plugins. It requires PHP5 and WordPress [...]

Read full post...

As long as there is private control over the economic system, talk about democracy is a joke.

Noam Chomsky

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...