Front-end Editor: Loading only on certain pages

Here is a foolproof way to make only parts of your site editable:

function front_editor_disable() {
if ( ! is_single() )
return true;
}
add_filter(’front_end_editor_disable’, ‘front_editor_disable’);

Just add that code in your theme’s functions.php file and you’re good to go: the plugin will work only on single posts.
Feel free to replace is_single() with whatever condition you need.

Read full post...

Custom Field Images: Version 2.0

Version 2.0 adds a feature that should have been there from the beginning: instead of storing the image URL, it stores the image ID (for images uploaded to the site), along with the desired size.
You’ll notice the change when you use the Insert CFI button to add an image. Otherwise, you can still add the [...]

Read full post...

scbFramework: Version 1.1

The first update for scbFramework has an important bugfix in the scbOptions class.
The scbBoxesPage now creates perfect WP 2.8 style dashboard-like admin pages.
Also, several methods have been added and revised in scbAdminPage. Because of this, version 1.1 is not fully backwards compatible.
You can see all the changes from version 1.0.1 here.

Read full post...