Changeset 117932
- Timestamp:
- 05/14/2009 03:49:02 PM (17 years ago)
- File:
-
- 1 edited
-
wp-category-meta/trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-category-meta/trunk/readme.txt
r117926 r117932 33 33 34 34 6. you can use the folowing functions into your templates to retreive 1 meta: 35 <?php 36 if (function_exists('get_terms_meta')) 37 { 38 $metaValue = get_terms_meta($category_id, $meta_key); 39 } 40 ?> 35 `<?php if (function_exists('get_terms_meta'))` 36 `{ $metaValue = get_terms_meta($category_id, $meta_key); }` 37 `?>` 41 38 42 39 7. you can use the folowing functions into your templates to retreive all meta: 43 <?php 44 if (function_exists('get_all_terms_meta')) 45 { 46 $metaList = get_all_terms_meta($category_id); 47 } 48 ?> 40 `<?php if (function_exists('get_all_terms_meta'))` 41 `{ $metaList = get_all_terms_meta($category_id); }` 42 `?>` 49 43 50 44 == Frequently Asked Questions ==
Note: See TracChangeset
for help on using the changeset viewer.