Custom Field Taxonomies: Version 0.9

In version 0.9 I finally included an advanced meta search box. It can be easily styled and you can even have several boxes on the same page.
The code to display it is simple: <?php meta_filter_box( ) ?>.
If you don’t want to use a certain key as a filter, you can write

<?php meta_filter_box($exclude = array(’key1′, ‘key2′)) ?>

Make [...]

Read full post...

Smarter Navigation: Version 1.0

The default previous_post_link() and next_post_link() have an option to restrict adjacent posts to the current category. This plugin takes one step further:
If you visit an archive page (category, tag, date, author, search etc.) and then visit a single post from that page, the previous_post_smart() and next_post_smart() will point only to the other posts in that [...]

Read full post...

Custom Field Taxonomies: Version 0.7

This version adds multiple key=value check, which means that now you can have URLs like this:
http://yoursite.com/?s=anything&key1=valueA&key2=valueB…
http://yoursite.com/category/news/?key1=valueA&key2=valueB…
I’ve also added autosuggest to the input fields in the Settings Page which will give suggestions based on the existing meta keys on your site.
Any ideas for an interface to construct such URLs are welcome (an advanced search box? etc).

Read full post...

Deviant Thumbs: Version 1.8

Now you can have multiple widgets with devious thumbs.
I’ve used Alex Tingle’s multiWidget class, which I’ve adapted to my coding habits. You can expect all my plugins to receive multi-widget support sooner or later.
Important: If you’re upgrading from an older version, your current widget settings will not be preserved, unfortunately.

Read full post...

Custom Field Taxonomies: Version 0.6

By popular demand, this plugin now supports URLs like this:

http://example.com/?s=word&meta_key=meta_value
http://example.com/?cat=1&mood=Happy

The template tags were updated to reflect this posibility. Also, an extra template tag was added:
all_meta_info() displays all available data for the current post.
PHP5 is required.

Read full post...

Custom Field Taxonomies: Version 0.5

Custom Field Taxonomies is a plugin that lets you use post metadata as ad-hoc taxonomies.

For each taxonomy, you have

Tag cloud with all values of that field
Show only posts with field = value
Any theme can add a meta.php template
Several template tags (can be found in meta-template.php)

It also has a nice settings page where you can define [...]

Read full post...