Oh, I love it when you give me an easy one. Starts to make up for all those harder ones… (well, partly. 😉
So what you want is to replace this:
(source: mikeschinkel.com)
With this:
(source: mikeschinkel.com)
How? Use the 'wp_tag_cloud'
hook which you can put into your theme’s functions.php
file or in a .php
file of a plugin you might be writing. For this one I tested the global variable $pagenow
to make sure it was on the term edit page. In the hook just strip out the style
attribute from each of the <a>
elements:
add_action('wp_tag_cloud','modify_taxonomy_tag_cloud',10,2);
function modify_taxonomy_tag_cloud($html,$args) {
global $pagenow;
if ('edit-tags.php'==$pagenow) // Only for the tag edit page
$html = preg_replace("#style="[^"]+'#Us",'',$html);
return $html;
}
Related Posts:
- wp_insert_term – parent & child problem
- Custom order of terms for custom taxonomy in admin and website
- Custom Taxonomy Only Showing Top Level Terms in Admin?
- How to link categories to custom taxonomy terms?
- Modify “View” in admin panel for custom taxonomy
- Dropdown taxonomy lists in admin menu
- Taxonomy Overview Page?
- Use wp_list_categories to list parent categories from actual term
- How to truncate the description in the admin panel for a custom taxonomy
- Custom Search only for my Custom Taxonomy Page – data
- WordPress Custom post query sorting does not work
- Custom Taxonomy Query
- How to get posts which must match both custom taxonomies?
- Multi-select field for Taxonomy can’t save the value
- Clicking Add New button for custom taxonomy only moves element
- Create custom taxonomy and Display in metabox dropdown
- Custom Taxonomy with tax_query
- How to create a custom taxonomy using a shortcode?
- Override Taxonomy Template
- Custom taxonomy not appearing in menu administration panel
- 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?
- Best structure for entering recipes in a WordPress theme?
- Headers already sent warning in Admin source is media.php 3140
- How Parent Taxonomy automatically added to the post when using `wp_set_object_terms()`?
- Get posts in certain Taxonomy terms for the current page url
- Proper way to update the slug of a taxonomy using register_taxonomy? [duplicate]
- Displaying Custom Taxonomy without a hyperlink
- Get object for a few selected taxonomies
- How to add images to taxonomy terms? [duplicate]
- Why get_page_template() doesn’t show taxonomy template file name?
- Trying to add taxonomy to get_categories() but it’s not working. How to fix this?
- Edit custom taxonomy description programatically
- Get only immediate children (and not grandchildren) of a hierarchical custom taxonomy term
- Get Terms for Page
- Get wordpress taxonomy slug name(s) to use as div class
- Get taxonomy name for the current post
- View the complete list of a taxonomy in the navigation menu
- 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
- How can I change the output display of my pagination?
- Corrupted nav-menu?
- Get name of taxonomies of current page
- Filter through custom taxonomy with an array of taxonomy IDs
- Remove taxonomy widget from “PAGE” post
- Add attribute taxonomy through code don’t appear in admin product page
- Custom taxonomies not showing up in admin menu
- Best way to redirect taxonomy terms to pages
- Create alphabetical Pagination for custom taxonomy?
- List Top 5 taxonomy terms based on number of post
- How to get attached image to taxonomy..?
- Loop through custom taxanomy in post and display custom fields from posts
- How do I hide certain taxonomy boxes from users in admin add post page?
- How to get list of only custom taxonomies?
- Get list of taxonomies associated with users
- query_posts that have custom taxonomy and limiting what shows based on the taxonomy
- Register `product_cat` taxonomy for default post post type
- Add custom taxonomy as a css class
- Custom Taxonomy Not Saving in Front End Post
- Taxonomy archive template that shows posts from more than one taxonomy
- Taxonomy page shows category in title
- Taxonomy.php how to show post only in current taxonomy with wp_query?
- Don’t display taxonomy if empty
- Query custom taxonomy for category including children
- Featured Images for Tags?
- Taxonomize taxonomy terms?
- Order taxonomy terms wordpress
- Query Multiple Custom Post Types & Exclude a Taxonomy Term
- Only display latest custom taxonomy post
- How can I get Taxonomy Images to work with ‘orderby’ argument?
- Unable to get the Parent Custom Taxonomy Terms
- How do I hide a term from non-admin users in get_the_term_list?
- How to get the term description in a taxonomy term archive query?
- How to define %category% for custom taxonomies?
- Unsetting post_tag taxonomy breaks term description for other taxonomies
- Taxonomies on Pages with Custom Formatting
- Query Multiple Custom Taxonomies
- How to combine taxonomies into URL?
- Why do my quick edits for custom taxonomies not show on the post frontend?
- Amend taxonomy to search in wordpress admin
- Include get_term_link inside search
- Unique taxonomy for post
- Trash Bin for Categories?
- Set two terms for a post when they differ only by an accent
- Prioritise Pages over Taxonomy Term Root Archive, but not Taxonomy Term Child Archives
- Tracking the name of a custom taxonomy
- Add terms to a taxonomy archive from within the same taxonomy
- Show recent posts from a custom taxonomy in wordpress
- Rewrite Search URL Permalink For CPT Custom Taxonomies
- How can i display a taxonomy? i have created a plugin and then a custom type. and a taxonomy , also i have register it
- display taxonomy terms with link
- Admin only taxonomies?
- new custom filed not showing in taxonomy
- How to add a dynamic dropdown derived from custom taxonomy
- Custom field with terms from another taxonomy programmatically
- Taxonomies and subtaxonomies relations