Περιγραφή
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.
Στιγμιότυπα
Εγκατάσταση
- 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/
. - Ενεργοποιήστε το πρόσθετο μέσω του μενού “Πρόσθετα” στο 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;
Συχνές Ερωτήσεις
- No technical skills needed.
Κριτικές
Συνεισφέροντες & Προγραμματιστές
“Category and Taxonomy Meta Fields” είναι λογισμικό ανοιχτού κώδικα. Οι παρακάτω έχουν συνεισφέρει στη δημιουργία του.
ΣυντελεστέςΜεταφράστε το “Category and Taxonomy Meta Fields” στην γλώσσα σας.
Ενδιαφέρεστε για την ανάπτυξη;
Περιηγηθείτε στον κώδικα, ανατρέξτε στο αποθετήριο SVN ή εγγραφείτε στο αρχείο καταγραφής αλλαγών ανάπτυξης μέσω RSS .
Σύνοψη αλλαγών
This is first version no known errors found