Version Description
- Made Multisite-compatible, thanks to Matt Wiebe!
Download this release
Release Info
Developer | mitchoyoshitaka |
Plugin | Taxonomy Metadata |
Version | 0.2 |
Comparing to | |
See all releases |
Code changes from version 0.1 to 0.2
- readme.txt +6 -3
- taxonomy-metadata.php +2 -1
readme.txt
CHANGED
@@ -4,10 +4,10 @@ Author: mitcho (Michael Yoshitaka Erlewine), sirzooro
|
|
4 |
Author URI: http://mitcho.com/
|
5 |
Plugin URI: http://mitcho.com/code/
|
6 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=66G4DATK4999L&item_name=mitcho%2ecom%2fcode%3a%20donate%20to%20Michael%20Yoshitaka%20Erlewine&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=US&charset=UTF%2d8
|
7 |
-
Tags:
|
8 |
Requires at least: 2.9
|
9 |
-
Tested up to: 3.
|
10 |
-
Stable tag: 0.
|
11 |
|
12 |
Implements metadata functionality for taxonomy terms, including for tags and categories.
|
13 |
|
@@ -53,3 +53,6 @@ Development of this plugin was supported by the [Massachusetts Institute of Tech
|
|
53 |
|
54 |
= 0.1 =
|
55 |
* Initial upload
|
|
|
|
|
|
4 |
Author URI: http://mitcho.com/
|
5 |
Plugin URI: http://mitcho.com/code/
|
6 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=66G4DATK4999L&item_name=mitcho%2ecom%2fcode%3a%20donate%20to%20Michael%20Yoshitaka%20Erlewine&no_shipping=0&no_note=1&tax=0¤cy_code=USD&lc=US&charset=UTF%2d8
|
7 |
+
Tags: taxonomy, metadata, API
|
8 |
Requires at least: 2.9
|
9 |
+
Tested up to: 3.2
|
10 |
+
Stable tag: 0.2
|
11 |
|
12 |
Implements metadata functionality for taxonomy terms, including for tags and categories.
|
13 |
|
53 |
|
54 |
= 0.1 =
|
55 |
* Initial upload
|
56 |
+
|
57 |
+
= 0.2 =
|
58 |
+
* Made Multisite-compatible, thanks to Matt Wiebe!
|
taxonomy-metadata.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Taxonomy Metadata
|
4 |
Description: Implements metadata functionality for taxonomy terms, including for tags and categories.
|
5 |
-
Version: 0.
|
6 |
Author: mitcho (Michael Yoshitaka Erlewine), sirzooro
|
7 |
Author URI: http://mitcho.com/
|
8 |
*/
|
@@ -31,6 +31,7 @@ function taxonomy_metadata_setup() {
|
|
31 |
}
|
32 |
|
33 |
add_action('init','taxonomy_metadata_wpdbfix');
|
|
|
34 |
function taxonomy_metadata_wpdbfix() {
|
35 |
global $wpdb;
|
36 |
$wpdb->taxonomymeta = "{$wpdb->prefix}taxonomymeta";
|
2 |
/*
|
3 |
Plugin Name: Taxonomy Metadata
|
4 |
Description: Implements metadata functionality for taxonomy terms, including for tags and categories.
|
5 |
+
Version: 0.2
|
6 |
Author: mitcho (Michael Yoshitaka Erlewine), sirzooro
|
7 |
Author URI: http://mitcho.com/
|
8 |
*/
|
31 |
}
|
32 |
|
33 |
add_action('init','taxonomy_metadata_wpdbfix');
|
34 |
+
add_action('switch_blog','taxonomy_metadata_wpdbfix');
|
35 |
function taxonomy_metadata_wpdbfix() {
|
36 |
global $wpdb;
|
37 |
$wpdb->taxonomymeta = "{$wpdb->prefix}taxonomymeta";
|