Banner for Wp Custom Taxonomy Meta
Plugin to add custom meta fields within built in and custom taxonomies. Simply add the desired fields by going through WP-admin -> Settings -> Ta … Wordpress Tutorial
Noted That:
  • To install correctly this wp-custom-taxonomy-meta.zip .
  • Fisrt Download the wp-custom-taxonomy-meta.zip to your computer
  • Extract/Open wp-custom-taxonomy-meta.zip to Your Computer.
  • Then, Find readme.txt file inside wp-custom-taxonomy-meta.zip and Open readme.txt .
  • Now, Read the Requirements of this plugin. Which Wordpress Version and PHP Version are required to run this Plugin in Your Wordpress Site.
  • Then, Follow the Tips Below.
Start the Tips:

Step-1 : Download " wp-custom-taxonomy-meta.zip " to Your Local Computer.

Step-2 : Then, Login to your " yourdomain.com/wp-admin " Dashboard.

Login to Wordpress Wp Custom Taxonomy Meta

Step-3 : Then, Click on " Plugins " + " Add New " from left Side Menu of Dashboard.

Go to Plugin Install Wp Custom Taxonomy Meta

Step-4 : Now, Click on " Upload Plugin " button.

Click Upload Button Wp Custom Taxonomy Meta

Step-5 : Now, Browse " wp-custom-taxonomy-meta.zip " Downloaded plugin from your computer, Where you downloaded " wp-custom-taxonomy-meta.zip " According to Step – 1 Above then, click on " Install Now "

Upload Plugin Wp Custom Taxonomy Meta

Step-6 : Now, Click on " Active Plugin "

Activate Wp Custom Taxonomy Meta

Step-7 : Then, See left Side Menu. " Wp Custom Taxonomy Meta " folder is added on left Side Menu. Now, Click on " Wp Custom Taxonomy Meta " folder.

Noted that: If you do not see " Wp Custom Taxonomy Meta " folder on left Side Menu then, see at left Side Menu " Settings " or " Tools ".

Step-8 : Now you configure yourself oR Watch video tutorial below about Wp Custom Taxonomy Meta Configurations and Settings or How to work " Wp Custom Taxonomy Meta " in your WordPress site.

oR

After Activated Plugin According to Step-6 then,

  1. Go to " Plugins " + " Installed Plugin " from Wordpress Admin Panel Leftside Menu.
  2. or Direct go to: https://yourdomain/wp-admin/plugins.php
  3. Then, Find " Category and Taxonomy Meta Fields " Activated Plugin from Plugin List.
  4. Then, Click on " Settings " from Plugin that is Category and Taxonomy Meta Fields
  5. Now, Edit/Add/Config the setting and Click on " Save Changes " button,
WP Plugin Setting



Guide
  • 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; 

Name