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

Read full post...

7 reasons why I use bbPress

bbPress 1.0 has finally been released last week. But why do I use it? Why would anyone use it? Here are my 7 reasons. It’s familiar If you have any experience with WordPress 2.7 or older, you will feel right at home using the new bbPress admin. You imediatly get a sense that you already [...]

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

Read full post...

Baseline Checker Bookmarklet

Update: For your forking pleasure, check out the github repository. If you’re a web designer, you’re probably familiar with the typographical concept of “baseline rhythm“. While tackeling the problem on this site, all I could find was baseline rhytm calculators. Sure, that helps a little, but it wasn’t quite what I needed. So I wrote [...]

Read full post...

Whenever you find yourself on the side of the majority, it’s time to pause and reflect.

Mark Twain

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

Front-end Editor: Version 1.0

The new feature in this release is the possibility of editing a single paragraph in a post, instead of the whole post. If you want to go back to the old behaviour, you can uncheck the new checkbox from the settings page. Speaking of which, the settings page is now split into two dashboard-like boxes.

Read full post...

Translating plugins

So you want to translate one of my plugins. If it is translatable, you will find the .pot file in the /lang/ directory of that plugin. If you don’t know what to do with it, you can read about the process here. If you want to share your translation with the rest of the world, feel [...]

Read full post...