I would use wp_get_object_terms
which will return an array of object terms that you can manipulate. You also have a little more control with sorting the terms.
<?php
$terms = wp_get_object_terms($post->ID, 'work', array('orderby' => 'name', 'order' => 'ASC'));
if(is_array($terms)) : ?>
<ul>
<?php if(isset($terms[0])) : ?><li><a href="https://wordpress.stackexchange.com/questions/22940/<?php echo get_term_link($terms[0]); ?>">Find out more about <?php echo $terms[0]->name; ?></a></li><?php endif; ?>
<?php if(isset($terms[1])) : ?><li><a href="<?php echo get_term_link($terms[1]); ?>">How <?php echo $terms[1]->name; ?> can benefit you</a></li><?php endif; ?>
</ul>
<?php endif; ?>
Obviously, this is not a very dynamic solution and will only work for your first two terms, but these functions should help you sort out the correct solution for you.
Related Posts:
- Get Posts by Custom Post Type ,Taxonomy, and Term
- How to limit the number of terms (terms acts like categories)
- How do I list custom taxonomy terms without the links?
- wp_insert_term doesn’t work with custom post type’s taxonomy
- Retrieve single term slug
- Get list of terms of current taxonomy archive for another taxonomy
- Get all taxonomies for all post types
- How to check the terms in single custom post type template
- Issue on Creating Custom Tax Term Dynamically From Another CPT Meta-box On Publish
- How do I display the taxonomy for a custom post type in an array
- Custom Taxonomy Terms in Menu lead to which page?
- How to order taxonomy terms by most recent post?
- Get all posts for custom taxonomy term
- Pages of my taxonomy terms are showing all posts
- Filter Term By Parent Term – Custom Post Type
- Filter By Term Not Working – Custom Post Type
- WordPress add taxonomies/terms list as a menu in archive page
- List custom taxonomy terms
- Display associated taxonomy child name on single CPT page
- Issue On Listing Woocommerce Parent Tag List
- Taxonomy Archive URL + Template
- How to get all taxonomies of a post type?
- How do I append multiple taxonomies to the URL?
- Display current taxonomy term when inside custom post type
- Get term slug of current post
- How to list custom taxonomy categories?
- Custom Taxonomy Template Post List with Sort Order
- wp_get_object_terms(): count relative to passed IDs?
- Get the ‘slug’ of a custom taxonomy
- display multiple term post from taxonomy in a single page
- Custom Metabox with Taxonomy Dropdown – Saving Issue
- How to get the parent’s taxonomy?
- Adding a term name from a custom taxonomy assigned to a post link displayed by a wp_query loop based on another taxonomy
- Include custom post type in “all posts”
- wp_insert_post custom taxonomy
- Display taxonomy term only if there’s a value
- How do I provide a “show all posts” link in a paginated term archive?
- How to output wordpress custom tags separated by comma?
- Problem with custom post types, taxonomy and permalinks
- How to create new category for custom post type?
- Fetch taxonomies by custom post type id array
- get_terms showing all categories instead of the ones assigned to a specific post
- Does WordPress limit the length of slug names for Post Meta or Terms?
- wp_set_object_terms() not adding new term to custom post and custom taxonomy
- Custom Post Type Archive Page Filtering
- Categories of custom taxonomy don’t show any posts
- Custom Taxonomy back-end customizations
- Is it possible to have dedicated page for parent/child taxonomy?
- Display a grid of taxonomy terms at root taxonomy page
- limit value taxonomy based on previous taxonomy value wordpress
- Display Custom Taxonomy Alphabetically
- How to make custom taxonomy into drop down select in a custom metabox
- How do I share categories across multiple post types?
- How to display products name in a non-alphabetical order, in a custom field (taxonomy)?
- Taxonomy in URL
- How to Set Taxonomy Object Description?
- Custom select query for taxonomies that have posts categorized in another taxonomy
- Variable not working in WP_Query
- Custom Post Types Archives and Single Pages not showing custom taxonomy data
- Alphabetically sort a taxonomy.php template by post title
- Get terms of a post but only if they’re also the child of a specific term
- Show Taxonomies with admin area for custom post type?
- Get taxonomy term by slug in post on archive page
- Custom taxonomy template list not working (404)
- Use the custom post type archive for taxonomies?
- Taxonomy template page not working
- Copy/Move selected taxonomy terms to another taxonomy for posts
- Get posts by category name
- Retrieve Custom Taxonomies with Description and Slug
- How to list posts by term (custom taxonomy)
- Query Custom Post Type by Taxonomy
- Query for specific taxonomy that executes a particular loop depending on volume of posts?
- Order posts by taxonomy terms
- How can i display a taxonomy? i have created a plugin and then a custom type. and a taxonomy , also i have register it
- How to list posts by terms
- How to associate custom taxonomy terms with custom post type?
- get_queried_object not work in taxonomy page
- Taxonomies are not showing in the category dropdown
- get_the_terms child terms for current post/custom post only
- Change custom post taxonomy values from front-end
- List all posts associated under custom taxonomy
- Custom Taxonomy – fields
- Custom post type category link + add to menu
- How to show terms used only for particular custom post type. Filter creation perpose
- Single taxonomy for different custom post types
- How to get all posts related to a taxonomy?
- Custom taxonomy- only output relevant terms
- Best approach to allow front-end display of posts’ reviewers?
- Decrement term in for each
- Custom Post Type and Taxonomies, creating the corresponding template file and loop the data
- Prevent repetitive terms in get_the_term_list
- Displaying taxonomy icon outside archive page
- Archive templates based on taxonomies
- Get term_id for each instance of custom taxonomy
- List a custom taxonomy’s terms, with links, on the taxonomy page
- List a custom post type’s posts ordered by nested custom taxonomy
- install.php Custom Taxonomy Term not being added to custom post
- See the process of creating a taxonomy and tell me where I made a mistake
- How to manage a bookstore
- Get all terms assigned to a post from different taxonomies