ეს პლაგინი არ დატესტილა WordPress-ის 3 ძირითად ვერსიაზე. როგორც ჩანს, ის უკვე აღარ არის მხარდაჭერილი და შესაძლოა არ იყოს თავსებადი WordPress-ის მიმდინარე ვერსიასთან.

Category and Taxonomy Meta Fields

აღწერა

Plugin to add custom meta fields within built in and custom taxonomies. Simply add the desired fields by going through WP-admin -> Settings ->Taxonomy Meta .

you can add following fields with category/taxonomy

  • Image.
  • Input Text.
  • Textarea.
  • Checkbox.

ფუნქციები

  • Very simple in use
  • Can be customized easily.

ეკრანული სურათები

  • Settings page where you can add the custom fields
  • Example of the custom fields under the general category fields

დაყენება

  • 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/.
  • Activate the plugin through the ‘Plugins’ menu in WordPress
  • Go to your WP-admin ->Settings menu a new “Taxonomy Meta” page is created.
  • Go to your WP-admin ->Settings ->Taxonomy Meta displayed in the category modification form with the meta you configured.
  • You can use the below function into your templates to retrieve all meta using ‘category id’:
if (function_exists('get_all_wp_terms_meta'))
{ 
   $arrayMetaList = get_all_wp_terms_meta($category_id);
   //where $category_id is category/term id
} 

// array all meta fields for category/term
print_r($arrayMetaList); 

  • you can use the below function into your templates to retrieve any particular meta using ‘category id’ and ‘meta key’:
if (function_exists('wp_get_terms_meta'))
{ 
  $MetaValue = wp_get_terms_meta($category_id, $meta_key ,true); 
  //where $category_id is 'category/term id' and $meta_key is 'meta key'
} 

//meta value for meta key $meta_key
echo $metaValue; 

ხდკ

  1. No technical skills needed.

მიმოხილვები

27.04.2020
The Installation tab of this plugin says to use the following code to display the information from your meta field: if (function_exists('wp_get_terms_meta')) { $MetaValue = wp_get_terms_meta($category_id, $meta_key ,true); //where $category_id is 'category/term id' and $meta_key is 'meta key' } //meta value for meta key $meta_key echo $metaValue; but he misspelled the variable for the echo. It's supposed to be $MetaValue, not $metaValue. It's suppose to have a capital M. With that fix it will display properly.
06.04.2018
This plugin has proven to be very useful for me, and when I had issues with implementation in my custom theme, I reached out to Aftab, the author, for help. He was kind enough to get back to me promptly and on top of that, he pointed out my error! Thanks, Aftab.
09.08.2017
Hi there, - In wp-taxonomy-meta-scripts.js line 37 missing "enable" variable definition - In wp-taxonomy-meta.php file: missing right php definition - should be <?php
15 რევიუს წაკითხვა

მონაწილეები & დეველოპერები

“Category and Taxonomy Meta Fields” ღია პროგრამული უზრუნველყოფაა. შემდეგმა ადამიანებმა წვილი შეიტანეს მის განვითარებაში.

მონაწილეები

გადათარგმნეთ Category and Taxonomy Meta Fields თქვენს ენაზე.

დაინტერესებული ხართ დეველოპმენტით?

დაათვალიერეთ კოდი, შეამოწმეთ SVN რეპო, ან გამოიწერეთ შექმნის ჟურნალი : RSS.

ცვლილებები

This is first version no known errors found