The best way is to use Advanced Custom Field plugin. It takes away all the hassle to create the fields, and update them.
Procedure could be:
1. Install “Advanced Custom Fields” plugin
2. Create a new field-group
3. Add desired type of field(s)
4. Add this field group to category
Now, you can see your added field(s) on the “Add New Category” or “Edit Category” pages.
Then you can just fetch category object(s) and use this code block to get your field value:
$terms = get_terms( 'category' );
if( !empty($terms) ) :
foreach($terms as $term) {
$fieldValue = get_field('field_id', $term );
}
endif;
This is to get all categories. You can simply use it for a single cat object.
If you’re willing to get your hands dirty with the coding, try this. http://en.bainternet.info/wordpress-category-extra-fields/
Related Posts:
- How to use taxonomies on attachments with the new Media Library?
- Contact Form 7 – Populate Select List With Taxonomy [closed]
- How to display custom taxonomies in posts?
- Why is my working Custom Taxonomy not in get_taxonomies array?
- Hook to process a new taxonomy tag before it is created?
- Custom taxonomy on permalink
- How do I filter posts by taxomony using AJAX
- Multiple users – only allow them to manage their own terms for custom taxonomy when logged in
- How to return a list of custom taxonomy terms via the Gutenberg getEntityRecords method
- Create taxonomy with meta term using the WP Rest Api
- Get current term’s ID
- Taxonomies not appearing in columns on dashboard
- How to modify default taxonomy field to a single text field?
- How to set hierarchical terms to a post using wp_set_object_terms
- Echo taxonomy term meta on author.php
- Hierarchical display of custom taxonomy
- How do I display a tag cloud with both post tags AND a custom taxonomy?
- How to output the taxonomy term name in a widget
- How to link categories to custom taxonomy terms?
- List taxonomy / category count showing list published posts only
- Save Filter for Taxonomies
- Is It Possible To Have Shared WordPress Custom Post Types?
- WordPress renames slug of tags used in multiple taxonomies?
- Allow only 1 instance of each term in each custom taxonomy
- get_terms: determine if taxonomy term has children
- Set a taxonomy as private
- “show option all” on list categories doesn’t display taxonomy
- meta_key & meta_value not working with get_pages and custom taxonomy
- wp_insert_post not updating custom taxonomy selected if logged in as a subscriber
- Wrapping result of the_terms in a span with a class of the term name
- How do I taxonomy terms based on terms they are used alongside?
- How can I populate a select element with terms from a custom taxonomy and filter post results?
- Taxonomy template shows only 10 posts
- How do I list the pages of a custom taxonomy?
- What is faster: custom taxonomy or serialized post-meta for db retrieval? (over 60,000 posts)
- Get taxonomy based on another taxonomy slug
- Why does a new taxonomy term get created when I assign an existing term to a post?
- Extend & Search Native WordPress Image Galleries With Tags and Taxonomies?
- Add Image Uploader In Admin Panel
- Tell the difference between a term and page when they have the same ID
- Custom Taxonomy index/archive hierarchy
- Filter custom taxonomy archive posts by 2nd custom taxonomy using select dropdown
- How to show all post related taxonomies
- Getting associated taxonomies
- How to use multiple archive templates for a taxonomy?
- WordPress implode & wp_insert_post question
- Get the taxonomy of the post
- how can i display taxonomy instead of category on my web page?
- Taxonomy Meta Box in User Profile?
- How Parent Taxonomy automatically added to the post when using `wp_set_object_terms()`?
- Get object for a few selected taxonomies
- Get only immediate children (and not grandchildren) of a hierarchical custom taxonomy term
- How to group all terms children’s in custom taxonomy?
- Corrupted nav-menu?
- Loop through custom taxanomy in post and display custom fields from posts
- query_posts that have custom taxonomy and limiting what shows based on the taxonomy
- Register `product_cat` taxonomy for default post post type
- Custom Taxonomy Not Saving in Front End Post
- Don’t display taxonomy if empty
- Taxonomize taxonomy terms?
- Displaying the post count of all custom taxonomy terms in a list format
- Set two terms for a post when they differ only by an accent
- Rewrite Search URL Permalink For CPT Custom Taxonomies
- Listing Cities A custom taxonmy by selection order
- Template taxonomy-{taxonomy}.php doesn’t show my posts
- Unregistered taxonomy apears still as emtpy filter list
- Get Highest and Lowest get_term_meta() value from Taxonomy Term
- Custom Taxonomy Not Being Recognized by is_tax()
- How can I rewrite a custom taxonomy archive slug
- Ignore punctuation marks in taxonomy order by name
- How to truncate the description in the admin panel for a custom taxonomy
- What’s the url queryvar for a taxnomy archive?
- set_object_terms for custom taxonomy in custom post type – not working
- Get all users attached to a taxonomy
- Resize $term attachment using url
- Custom taxonomy escaping html attr
- Showing list of custom posts of a custom taxonomy
- Display taxonomy posts
- Show portfolio category slug in url ( if exist)
- switch statement for taxonomy content
- How do you search for a post by custom taxonomy?
- Child Pages and Custom Taxonomies
- Remove taxonomy menu without removing the metabox?
- How to perform a search inside a specific taxonomy category
- Sorting Custom Taxonomy in ASC/DESC order?
- How can i set post_per_page in my taxonamy?
- Exclude 2 in 3 terms of A Taxonomy from all Archives
- Select default taxonomy on dropdown
- WordPress Taxonomy Menu
- Get Posts with matching lowest taxonomies
- Loop custom post type by taxonomy (Category)
- Any way to make custom taxonomy field searchable?
- get_terms() – unexpected ‘=>’ (T_DOUBLE_ARROW) error
- get_term_children specific no id
- Custom Search only for my Custom Taxonomy Page – data
- Remove Tag Cloud Words from Custom Taxonomy
- Make custom post type display with custom taxonomy in url
- How do I create a term for every value of a post meta?
- Save selected terms in order of custom taxonomy in post
- Taxonomy entries are spawning copies of existing entries with the new title as the existing ID, since upgrade