How about passing the smallest
and largest
arguments to wp_tag_cloud()
and making them both the same?
<?php
wp_tag_cloud(
array(
'taxonomy' => 'channels',
'smallest' => '1',
'largest' => '1',
'unit' => 'em',
)
);?>
Update: use get_terms()
to get multiple taxonomy terms:
<?php $terms = get_terms(array('channels', 'stations'));
if (is_array($terms)) : ?>
<ol>
<?php foreach ($terms as $term) : ?>
<li><a href="https://wordpress.stackexchange.com/questions/56312/<?php echo get_term_link($term) ?>"><?php echo $term->name ?></a></li>
<?php endforeach; ?>
</ol>
<?php endif; ?>
Related Posts:
- How to remove the tag cloud from custom taxonomy admin page?
- Custom columns on edit-tags.php main page
- custom post type taxonomy “tag” archive : no post found
- Exclude Specific Term from Search
- Can I turn off write-in tags/taxonomies?
- Is it possible to use one slug for Multiple Taxonomies?
- Widget to display custom taxonomy tag cloud
- Post tags saving as both tag name & tag ID on post update when tags are displayed as checkboxes
- Non-hierarchical custom taxonomy using checkboxes on edit-screen -> saving issue
- How to display and use all existing tags at my write-post-at-frontend-panel?
- how to get title to custom tags page
- How do I display a tag cloud with both post tags AND a custom taxonomy?
- Can I turn off write-in tags/taxonomies?
- WordPress renames slug of tags used in multiple taxonomies?
- Allow only 1 instance of each term in each custom taxonomy
- How do I make a custom taxomony appear like tags?
- Hook to change Custom Tag Taxonomy Links?
- How to adjust code to refresh a dropdown box with tags that are active on filtered category listing
- Metabox to list/store a certain type of post tag
- Sorting Tags by Slug Value
- Extend & Search Native WordPress Image Galleries With Tags and Taxonomies?
- How to filter a post in the Tag Cloud widget, using tags of a media library image attached to the post?
- Replace taxonomy permalinks
- Front-End Custom Taxonomy Tag Select
- Create custom taxonomy and Display in metabox dropdown
- Problem with removing post tags programmatically
- How to get custom category’s link?
- saving meta/custom field to tag
- Changing input type from text to multi select dropdown – skill taxonomy
- Displaying user selected custom tags/taxonomies on the front-end
- Featured Images for Tags?
- Displaying the post count of all custom taxonomy terms in a list format
- Automatically tag posts based on user-defined words [closed]
- making an index from custom taxonomies and tags of posts (not hierarchical taxonomy)
- Set two terms for a post when they differ only by an accent
- Get tags name under custom taxonomy in wordpress
- Filter Tags for current users
- Limit Tag Links in Post Content
- Change the Page Title of the Archive Page for Portfolio Tags
- Using wp_tag_cloud with only current post tag with special class
- Get Posts by tag from a custom taxonomy
- Display the first tag assigned to a post
- Display custom post taxonomies
- How to randomise a custom taxonomy tag cloud
- How do i change the tags and taxonomies
- Any way to make custom taxonomy field searchable?
- How to get tags with custom taxonomy field?
- Primary Taxonomy for Post
- Group custom taxonomies based on tags contained in their posts
- Display one post from each term in a custom taxonomy [closed]
- get_terms showing link to category even if all posts are drafts
- How to restrict on selecting child taxonomy
- Are Categories, Tags and Custom Taxonomies any different in regards to SEO?
- Is it possible to sort the post based on a custom field?
- How do I get terms as a list for a specific post?
- How get custom field from custom taxonomy?
- Move terms from one taxonomy to another keeping the hierarchy
- Creating an Archive using a Custom Taxonomy
- Custom Taxonomy template is not recognised
- Change sub-menu position of custom taxonomy
- How to filter terms from a custom taxonomy by a usermeta value on all screens and templates
- AJAX response, edit tags
- List child terms if parent but show nothing on children
- orderby meta_value breaks taxonomy term archives
- If post has ANY term attached to it, get the first one only
- Locale switching with a “language” taxonomy
- query_posts and custom taxonomy posts order
- Hide product categories and taxonomy terms in menu if empty
- get the taxonomies terms associated with users
- How can I highlight a top level dashboard menu item created for a custom taxonomy?
- Custom Taxonomy with tax_query
- Edit custom taxonomy description programatically
- why are the term_id and term_taxonomy_id doesn’t match on custom taxonomies, but are duplicates on categories
- Get taxonomy name for the current post
- How to get posts that contain multiple terms from multiple taxonomies?
- Duplicate slug/permalink issue
- Getting taxonomies associated with a specified post type
- How to list the taxonomy terms that fit the custom query?
- What’s the best way to add taxonomy’s image in 2017?
- Count of posts by different parameters?
- Add custom taxonomy as a css class
- Wp_query…a type of term a different div
- search using multiple taxonomies and keyword
- Need equivalent of single_term_slug
- Issue adding custom taxonomies to custom post type (PHP)
- How to loop custom posts that have an exact match in taxonomy terms?
- True or F False Setting of ‘with_front’ Parameter of Rewrite Is returning Exact Same result
- wp_insert_post not adding taxonomy (using wp_set_object_terms)
- Filter “get_terms” query
- generate random slug when adding taxonomy
- Error 404 in Custom taxonomy with pagination
- WordPress Taxonomy Permalinks – Custom?
- Need help understanding a rewrite with multi-level taxonomy
- Display custom post term or taxonomy
- Attaching meta box to specific category/taxonomy in custom post type
- Change Permalink to Value of Custom Field
- Custom Taxonomy type in nav menu
- Advanced search: roles and multiple taxonomies
- Removing fields from category/taxonomy edit form
- Gravity Forms with Advanced Post Creation Add-On not updating ACF fields on custom taxonomy