Questions tagged [taxonomy-terms]

Terms are usually associated to custom taxonomies in Wordpress

Use this tag if you mean terms used for custom taxonomies in Wordpress

486 questions
-1
votes
1 answer

C#, Sharepoint - GetDescription() & SetDescription() of the Taxonomy Term

I want to be able to manage the GetDescription() and SetDescription() of the Taxonomy Term(as a managed metadata). In order to get the value of the Description, not of the Label of the Taxonomy Term. How should I manage these functions? Any…
nbc
  • 1
  • 3
-2
votes
0 answers

Product attributes without WooCommerce

this is probably an generic question but I hope to find some suggestion. I'm working on a custom Wordpress theme which is a refactoring of an previous WooCommerce theme (ie: I have to convert an WooCommerce theme to a new non-WooCommerce Wordpress…
-2
votes
1 answer

Getting duplicates term names in array wordpress custom fields terms?

This is my code and I am getting duplicate values. $results = array(); $results['targetOptions'] = array(); $selectOptions = array(); $selectOptions = get_posts( array( 'post_type' =>…
-2
votes
1 answer

Get ACF value from custom taxonomy

I have a custom taxonomy "roles", which has an ACF custom post type "role_order". My understanding is that to retrieve the value I should do: get_field('role_order', 'roles_222'); where 222 is the ID of the custom taxonomy term. Nothing's being…
-2
votes
1 answer

How to Show taxonomies terms custom field value using ACF plugin

I have used Advance Custom Field (ACF) wordpress plugin to add custom filed on Woocommerce -> Product -> Categories form. Right now i can't able to print that field value on categories page. Please see this screen shot to know field slug name and…
Ketan
  • 579
  • 3
  • 11
  • 31
-3
votes
2 answers

Cannot update taxonomy custom field via REST API (Wpapi)

I've created a custom taxonomy "vendors" in the following way: // Register Custom Taxonomy add_action( 'init', 'vendor_taxonomy', 0 ); function vendor_taxonomy() { $labels = array( 'name' => 'Vendors', …
1 2 3
32
33