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

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

Read full post...