Smarter Navigation: Version 1.2

This version requires PHP 5. If you’re getting an error on activation, it means you’re running PHP 4.

Two template tags have been added:

If you have posts in multiple categories, you can use get_referrer_category() to retrieve the category object, based on the referrer url.

get_referrer_url() returns the full URL of the referrer.

Also, there are two extra arguments for previous_post_smart() and next_post_smart(): $in_same_cat and $excluded_categories.

This is how the function prototype looks like:

previous_post_smart(
	$format = '« %link',
	$title = '%title',
	$fallback = true,
	$in_same_cat = false,
	$excluded_categories = ''
);

Front-end Editor: Common Mistakes In Themes

Although Front-end Editor tries to be compatible with as many themes as possible, there’s only so much it can do.
No wp_footer() call
Lots of plugins, including this one, rely on the wp_footer() call to include their JavaScript files. Open your theme’s footer.php file and make sure you have this line somewhere:

<?php wp_footer(); ?>

Read full post...

WP-UserOnline: Version 2.60

Last month, Lester Chan, one of the most respected plugin authors in the WordPress world, has announced that he will no longer be able to continue development on his plugins.

Since I use WP-UserOnline on all of my sites, I adopted it (along with WP-PageNavi) and will continue to support it.

Read full post...

Smart Archives Reloaded: Version 1.9

Lots of goodies in this release, based on the feedback and requests I got from you guys (and gals).

First off, there’s a new format called “menu”. It’s basically the year and month menu from the fancy format, but without the post list. It’s meant to be displayed on year and month based archives.

Read full post...

Front-end Editor: Version 1.6

The number of editable elements continues to grow with this version of your favourite inline editor for WordPress:

Besides tags and terms, you can now edit categories as well, using the same interface. They all have autosuggest enabled, to make it easier to work with.

Custom fields with multiple values can also be edited now.

Read full post...