Just wrote the function. It’ll display the tinymce editor in every custom taxonomy description right now. Surely you can edit to show it for only some specific taxonomy.
/**
* Display advanced TinyMCE editor in taxonomy page
*/
function wpse_7156_enqueue_category() {
global $pagenow, $current_screen;
if( $pagenow == 'edit-tags.php' ) {
require_once(ABSPATH . 'wp-admin/includes/post.php');
require_once(ABSPATH . 'wp-admin/includes/template.php');
wp_tiny_mce( false, array( 'editor_selector' => 'description', 'elements' => 'description', 'mode' => 'exact' ));
}
}
add_action( 'init', 'wpse_7156_enqueue_category' );
You can provide the first argument in wp_tiny_mce as true if you want a stripped version of tinyMCE
Related Posts:
- How to use taxonomies on attachments with the new Media Library?
- Add custom taxonomy fields when creating a new taxonomy
- How to display custom taxonomies in posts?
- Creating Custom Taxonomy without mapping to any post type
- Exclude specific slug in ‘get_terms’
- wp_insert_term – parent & child problem
- Widget to display custom taxonomy tag cloud
- Hook to process a new taxonomy tag before it is created?
- Get total number of comments from posts in a specific custom taxonomy
- Multiple users – only allow them to manage their own terms for custom taxonomy when logged in
- wp_options table value
- Custom Taxonomy Only Showing Top Level Terms in Admin?
- Is it possible to get a Previous/Next Taxonomy term archive URL?
- How do I display a tag cloud with both post tags AND a custom taxonomy?
- Adding session variable and/or cookie based on user-selected input
- How to display term description in empty terms archive?
- Checking if a Page has an Associated Term?
- Create Child Taxonomies
- Query Posts by taxonomy/Taxonomy Child Custom order
- Current category link filter
- display taxonomy slug from term ID
- Make a taxonomy column sortable in the admin?
- Redirect all child taxonomy to its parent
- How to display custom taxonomy images on index.php?
- How do I taxonomy terms based on terms they are used alongside?
- get_term and get_term_by return null or false, even though term exists
- How can I populate a select element with terms from a custom taxonomy and filter post results?
- How do I list the pages of a custom taxonomy?
- Get number of post who belongs in two taxonomies!
- Why does a new taxonomy term get created when I assign an existing term to a post?
- Add Image Uploader In Admin Panel
- Tell the difference between a term and page when they have the same ID
- WordPress thinks my custom taxonomy pages are search pages #seo
- How to use multiple archive templates for a taxonomy?
- Adding custom taxonomy in my existing category URL
- Custom Taxonomy Query
- WordPress implode & wp_insert_post question
- how can i display taxonomy instead of category on my web page?
- Taxonomy Meta Box in User Profile?
- Proper way to update the slug of a taxonomy using register_taxonomy? [duplicate]
- Displaying Custom Taxonomy without a hyperlink
- Get only immediate children (and not grandchildren) of a hierarchical custom taxonomy term
- How to group all terms children’s in custom taxonomy?
- My custom taxonomy page is leading in 404 page
- Show template part if part of term
- one post per term taxonomy
- Corrupted nav-menu?
- Remove taxonomy widget from “PAGE” post
- List Top 5 taxonomy terms based on number of post
- Get list of taxonomies associated with users
- Register `product_cat` taxonomy for default post post type
- Custom Taxonomy Not Saving in Front End Post
- Taxonomy.php how to show post only in current taxonomy with wp_query?
- Don’t display taxonomy if empty
- Taxonomize taxonomy terms?
- Use wp_list_categories to list parent categories from actual term
- Include get_term_link inside search
- Set two terms for a post when they differ only by an accent
- Rewrite Search URL Permalink For CPT Custom Taxonomies
- display taxonomy terms with link
- Custom field with terms from another taxonomy programmatically
- Taxonomies and subtaxonomies relations
- Listing Cities A custom taxonmy by selection order
- Template taxonomy-{taxonomy}.php doesn’t show my posts
- How to create a non removable taxonomy term?
- Can I get thumbnail of taxonomy?
- How to show category list in WordPress
- transfer two existing taxonomy terms into one custom metabox
- Custom Taxonomy Not Being Recognized by is_tax()
- How can I rewrite a custom taxonomy archive slug
- How to add all existing Custom Taxonomy to Admin Menu Creations Interface?
- 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
- Templates files for custom post type with custom tags
- Display taxonomy posts
- Creating a Taxonomy Page [duplicate]
- Add image to taxonomy and output to homepage
- 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
- Loop custom post type by taxonomy (Category)
- query posts returns 10 records
- get_terms() – unexpected ‘=>’ (T_DOUBLE_ARROW) error
- get_term_children specific no id
- Custom Search only for my Custom Taxonomy Page – data
- How to add/enqueue Custom CSS for a custom taxonomy page?
- Prevent random entries in hierarchical false taxonomies
- Exporting CSV of users with custom user taxonomies out of WordPress
- is_tax not working for custom taxonomy
- Querying posts globally based on custom taxonomy with its own taxonomymeta table
- How to delete unused terms?
- Child terms with improper parent in the url should redirect to 404
- Issue with WordPress Automatically Assigning Terms to Multiple Posts