Linux 软件免费装

Category Meta plugin

开发者 josecoelho
Randy Hoyt
steveclarkcouk
Vitaliy Kukin
Eric Le Bail
Tom Ransom
更新时间 2014年4月25日 02:09
捐献地址: 去捐款
PHP版本: 2.8 及以上
WordPress版本: 3.4.2

标签

plugin meta image admin images icons category icon category image category icon taxonomy meta category meta taxonomy metadata custom taxonomy meta

下载

1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.7 1.2.8 1.0.3 0.0.1 1.0.0 1.0.1 1.0.2

详情介绍:

This plugins add meta data to the wordpress categories and terms. It Creates a wp-termsmeta table to store the entered meta. It adds input fields to the category and other term administration interface to enter the meta values. It provides functions to retrive / create / update / delete the category and terms meta. It can be used to add meta to custom taxonomies (terms). This plugin has been tested with WP2.8.6 and WPmu2.8.6 and WP3.3.1

安装:

  1. Unzip into your /wp-content/plugins/ directory. If you're uploading it make sure to upload the top-level folder. Don't just upload all the php files and put them in /wp-content/plugins/.
  2. Activate the plugin through the 'Plugins' menu in WordPress
  3. Go to your Administration interface in the "Settings" menu a new "Category Meta" page is created. Configure the meta you want to use.
  4. go to your Administration interface, in the "Category" menu -> new fields are displayed in the category creation/modification form with the meta you configured.
  5. That's it!
  6. you can use the folowing functions into your templates to retreive 1 meta: if (function_exists('get_terms_meta')) { $metaValue = get_terms_meta($category_id, $meta_key); }
  7. you can use the folowing functions into your templates to retreive all meta: if (function_exists('get_all_terms_meta')) { $metaList = get_all_terms_meta($category_id); }