Changeset 176154
- Timestamp:
- 11/23/2009 09:23:10 AM (16 years ago)
- Location:
- wp-category-meta
- Files:
-
- 10 added
- 2 edited
-
tags/1.0.3 (added)
-
tags/1.0.3/lang (added)
-
tags/1.0.3/lang/wp-category-meta-en_US.mo (added)
-
tags/1.0.3/lang/wp-category-meta-en_US.po (added)
-
tags/1.0.3/lang/wp-category-meta-fr_FR.mo (added)
-
tags/1.0.3/lang/wp-category-meta-fr_FR.po (added)
-
tags/1.0.3/readme.txt (added)
-
tags/1.0.3/views (added)
-
tags/1.0.3/views/options.php (added)
-
tags/1.0.3/wp-category-meta.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-category-meta.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-category-meta/trunk/readme.txt
r175529 r176154 1 1 === Category Meta plugin === 2 Contributors: Eric Le Bail 2 Contributors: Eric Le Bail, Tom Ransom 3 3 Donate link: # 4 4 Tags: category,meta,category meta,admin,plugin 5 5 Requires at least: 2.6 6 6 Tested up to: 2.8.4 7 Stable tag: 1.0. 27 Stable tag: 1.0.3 8 8 9 9 Add the ability to attach meta data to the wordpress categories. … … 19 19 20 20 == Update Log == 21 22 1.0.3 : Fix an error on the meta update method thanks to Tom Ransom for sending the fix. 21 23 22 24 1.0.2 : Debug when no meta is set. -
wp-category-meta/trunk/wp-category-meta.php
r175529 r176154 4 4 * Plugin URI: # 5 5 * Description: Add the ability to attach meta to the Wordpress categories 6 * Version: 1.0. 26 * Version: 1.0.3 7 7 * Author: Eric Le Bail 8 8 * Author URI: # … … 315 315 316 316 if ( ! $wpdb->get_var( $wpdb->prepare( "SELECT meta_key FROM $wptm_table_name WHERE meta_key = %s AND terms_id = %d", $meta_key, $terms_id ) ) ) { 317 return add_ post_meta($terms_id, $meta_key, $meta_value);317 return add_terms_meta($terms_id, $meta_key, $meta_value); 318 318 } 319 319
Note: See TracChangeset
for help on using the changeset viewer.