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

ImageShack Offloader: Version 0.9

I’m pleased to announce my newest plugin, ImageShack Offloader. It allows you to use ImageShack as a free CDN for your images, with maximum convenience. Version 0.9 already has a translatable settings page, where you can tweak it’s behaviour to perfection. For more information, see the Extend page. If you want to translate it, you [...]

Read full post...

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

Front-end Editor: Version 0.5

Front-end Editor is a plugin that lets you edit posts or pages directly from your site. No need to load the admin backend just to correct a typo. To edit something, just double-click it. Current Features edit title or content works for posts and pages should work with any theme lightweight This is just the [...]

Read full post...

Hide Spam Count: Version 1.0

Whenever I visit my site’s dashboard, the first thing I see is the bold red Spam count. Instead of wasting time deleting spam comments, I prefer to let Akismet do that automatically, so I don’t need to see how many spam comments there are. This little plugin simply hides that part:

Read full post...