There’s a filter for taxonomy labels, taxonomy_labels_{$taxonomy}
(the {$taxonomy}
should be replaced with your custom taxonomy name) that allows you to filter pretty much all of it.
Example:
// Assuming your custom taxonomy is named 'faq_category'. Adjust as needed.
add_filter( 'taxonomy_labels_faq_category', 'wpse626542_taxonomy_labels' );
/**
* Filters the taxonomy labels.
*
* @param object $labels The taxonomy labels.
* @return object The filtered labels.
*/
function wpse426542_taxonomy_labels( $labels ) {
// Changes the label on the Name field.
$labels->name_field_description = __( 'My Custom Name Description', 'my-plugin' );
// Change any other labels you want, and then...
return $labels;
}
A full list of the labels can be found in the get_taxonomy_labels()
docs.
Related Posts:
- Change the term based on the value of a $variable using wp_update_post in submitting a form
- Get terms by taxonomy AND post_type
- Get Posts by Custom Post Type ,Taxonomy, and Term
- Get The Post Type A Taxonomy Is Attached To
- Display current taxonomy term when inside custom post type
- Get term slug of current post
- How to limit the number of terms (terms acts like categories)
- Create page to handle form submission
- How do I list custom taxonomy terms without the links?
- query multiple taxonomies
- wp_set_object_terms() is not replacing term, but creating a new one
- Get terms that contain posts that in turn belong to other terms?
- wp_insert_term doesn’t work with custom post type’s taxonomy
- Custom Taxonomies Terms as Post Title for Custom Post Types upon Publishing
- wp_get_object_terms(): count relative to passed IDs?
- Retrieve single term slug
- Not Able to Insert Taxonomy Term Using wp_insert_post()
- array_pop() expects array, boolean given for $event_type_term ->slug
- How can I add programmatically custom taxonomy terms to a custom type post when saving posts?
- post count is wrong when using same taxonomy for 2 different CPT
- Glossary with Custom Post Type
- Custom Post Type Archive Template
- Maintaining strict one-to-one association between terms and custom posts
- Displaying custom post type by first letter through custom taxonomy
- Retrieve a specific field from taxonomy term through advanced custom fields [closed]
- If on term-page -> get the current term?
- Separate Custom Post Type Taxonomy by Comma
- Sort the main query in subcategories/terms?
- Conditional two level dropdown filter for custom post type
- Trouble adding custom featured image for custom taxonomy TERMS
- Get child terms of current term of the current post
- Get list of terms of current taxonomy archive for another taxonomy
- Creating a function that receives the taxonomy terms that have been changed in a custom post type
- Get all taxonomies for all post types
- Get the terms of a custom taxonomy for a specific author in author template
- Dynamically create/remove terms in taxonomy when custom post type is published/trashed
- Linking three taxonomies with ACF
- WordPress loop: Show only a Custom Post Type Taxononmy TERM
- How do I display the taxonomy for a custom post type in an array
- Display Custom Taxonomy Alphabetically
- How do I require the specification of term in a custom post type and custom taxonomy?
- Custom Post, set object Taxonomy terms in plugin
- Get terms that contain posts that in turn belong to other terms?
- How to get custom posts sub category link
- Custom while loop for hierarchical display of a taxonomy
- Lists custom taxonomy terms that has specific custom field value assigned to the term (not post)
- Display taxonomy terms, child terms and posts in a template
- How to make front end form only accept certain values
- Use custom walker to add taxonomy terms to main nav menu
- Add term to custom post type on draft
- Displaying custom-taxonomy-terms sorted by parent/child-hierarchy?
- Listing all term items alphabetically / sorting loop
- How to get WordPress term attached to the Post?
- Query posts with double taxonomy
- Adding predefined terms to a taxonomy
- Get parent category id from child category page for custom taxonomy
- How to get only child terms from a custom taxonomy of current post type?
- Custom query – get_the_terms not work
- How to Display Posts From Category Within a Custom Taxonomy?
- Custom Post Types Archives and Single Pages not showing custom taxonomy data
- Shared terms between taxonomies
- Get terms of a post but only if they’re also the child of a specific term
- The Difference Between Categories and Tags and Taxonomies and Terms
- How to get dropdown instance value in WordPress custom Widget
- Get taxonomy term by slug in post on archive page
- custom hierarchical taxonomy and custom post type list contains surplus posts
- How to display custom taxonomy term meta on custom post type
- get_terms() returns Trying to get property of non-object error for custom taxonomy
- how to count the current posts terms
- Get the link of the first post of a custom taxonomy in a custom taxonomy list
- Urls in Custom Post Type work for Terms but not for its Taxonomies
- Commas not displaying in implode
- does wp_insert_term link the term to a certain post ID?
- Custom Taxonomy Terms in Menu lead to which page?
- How can I get 3 different taxonomy type terms in a div class element?
- Grab all Custom Posts by multiple taxonomies and terms
- Get terms for a specfic post from multiple taxonomies in custom post type
- Add custom post type taxonomy tag to article class
- Custom Taxonomy dont save in a frontend form for post a custom post
- Add filter to Admin list for all custom post types by their custom taxonomies
- Add the custom post term to the custom post title
- Retrieve Custom Taxonomies with Description and Slug
- How to list posts by term (custom taxonomy)
- Making a form for user to add new custom post with custom taxonomies and custom fields
- Custom taxonomy not saving correctly
- Using get_terms() to list terms from one custom taxonomy AND from one specific built-in category
- Taxonomy terms with the same name are updated between separate custom post types
- Query for specific taxonomy that executes a particular loop depending on volume of posts?
- Add a class to a div if custom post type has specific terms?
- Change dynamically the dropdown list value
- display post count in archive page that have relation with another taxonomy term
- Return multiples taxonomies with wp_get_object_terms
- Custom taxonomy terms hierarchical navigation
- How to display custom taxonomy term specific post?
- How to list posts by terms
- Excluded Custom Taxonomy Term Posts Displaying in loop
- How to order taxonomy terms by most recent post?
- How to associate custom taxonomy terms with custom post type?
- get_queried_object not work in taxonomy page
- get_the_terms child terms for current post/custom post only