You might be able to use the the_author_posts_link
filter to do this:
add_filter( 'the_author_posts_link', functoin ($link) {
global $post_id;
// get "source" tax terms
$sources = get_the_terms( $post_id, 'source' );
// build html
$html="";
foreach ($sources as $source) {
$html += '<a href="'. get_term_link($source) .'">'. $source->name .'</a>';
}
// pre-pend html to author link
$link = $link . $html;
return $link;
});
More info: https://developer.wordpress.org/reference/functions/the_author_posts_link/
Related Posts:
- Custom Taxonomy Meta Admin Column
- search query within custom taxonomy term, post title and meta field
- Help With issue on pre_get_posts filter in taxonomy
- How to show taxonomy meta on frontpage?
- how to create a proper query for getting a list of users with taxonomy related meta key
- Insert form checkbox at bottom of taxonomy edit term page
- $wpdb query a post type within a specific taxonomy term while ordering posts by custom meta value?
- Meta query for a custom taxonomy on attachment
- How to implement custom search with input fields?
- Add Custom Taxonomy for Blog Meta Info
- Creating conditional to display taxonomy term meta
- Passing form inputs into multi-taxonomy query
- WP REST API – get custom taxonomies based on terms & filter
- Clean Taxonomy terms in new post type wordpress
- WordPress search form and search result through ACF field in custom taxonomy
- How to show one post content in another post content which has same terms?
- Hook to filter based on form value and insert term
- Complex Taxonomy scheme
- Custom taxonomy with custom meta value is not sorting correctly (query returns the same value for orderby regardless of sort column click)
- How to prevent new terms being added to a custom taxonomy?
- How to add images to taxonomies?
- Read-only taxonomy (user can assign term but can’t create or edit existing terms)
- Can you add the visual editor to the description field for custom taxonomies?
- Adding Category/Tag/Taxonomy Support to Images/Media
- Taxonomy menu with post count and multiple parents
- Sort Custom Post Type Archive by Taxonomy Term [duplicate]
- Large taxonomy (2000+ terms), causing WordPress to hang
- Is it possible to have a taxonomy archive that lists taxonomy terms?
- Check if current term is a child of another term
- Dynamic page slug for Custom Taxonomies?
- How to pass posts_per_page and paged params query vars to custom taxonomy archive urls?
- show term description instead of list terms of custom taxonomy
- Looping Through Custom Tax Terms and Displaying All Posts For Each
- Exclude Custom Taxonomies
- How to get the top most term (top ancestor) of a custom taxonomy child term?
- Get custom category name from ID
- Edit post meta with checkboxes on front end
- Set download limit and expiry for WooCommerce downloadable products in specific categories
- Custom taxonomy sort by term meta in admin columns
- Storing data into custom taxonomies VS post custom fields (post meta)
- How to order a list of taxonomy terms alphabetically?
- WordPress Custom Taxonomy – Volume / Issue – Unique Slug Issue
- get_the_terms issue
- How to show the entries in a custom taxonomy by author?
- ACF vs Taxonomies
- Reverse traversing taxonomy based on term_id
- ‘wp’ action hook not firing in admin and login?
- Display all posts for taxonomy term across multiple custom post types
- How to Rewrite Taxonomy URL to Include the Post Type as the Second Segment of the URL?
- Include parent and child in category url
- woocommerce custom product category template
- Custom taxonomy multiples
- Is there a template file to list all terms of a given custom taxonomy?
- Assign terms to new capability for all taxonomies
- List of users inside custom taxonomy
- Rewrite Rules returning wrong data
- Output unique taxonomy terms of posts inside a loop
- Taxonomy terms can still be added when only assign_terms capability has been granted
- Use an HTML Element To Filter Taxonomies In WP Search
- Weekdays as terms – How to order taxonomy terms by ID in admin panel?
- How to display ACF taxonomy checkbox links on WooCommerce product category archive
- How to find taxonomy parent id from child taxonomy page?
- Can I add other Custom Taxonomy to my syntax (functions.php)
- How to remove the search field in custom taxonomy ui?
- How to add hierarchical taxonomy with parent child relation to URL?
- How to show post for a particular term of custom taxonomy?
- Is there a way to change select-list for new custom taxonomy?
- How to get the term description in a taxonomy term archive query?
- Chaining Taxonomy Queries
- How to list terms by first letter, as in A’s then B’s etc
- How to _GET multiple value checkbox WP_Query in Custom Toxonomy / Custom Fields
- Taxonomy hide not working
- Admin only taxonomies?
- Create new Taxonomy, add extra fields, register terms AND extra fields values?
- Why is my custom taxonomy image not displaying?
- See double taxonomy inputs in WP editor
- How to change custom categories term links?
- Body class to each level of a hierarchical custom taxonomy
- Dropdown (with onChange) with custom taxonomies
- Restructuring permalink with more than one taxonomies
- How to limit custom post category
- How to use two same taxonomy in same post differently?
- ajax drop down change second drop down data
- Redirect or Prevent Viewing of Custom Taxonomy’s Archives?
- Display taxonomy term slugs
- Automatically Populate Post Taxonomy Data Based on Post Author Meta Data?
- Get Posts by tag from a custom taxonomy
- Tax query array terms display out of order
- How to change taxonomy slug?
- Taxonomy to WordPress Permalinks of custom post type
- Avoiding stripping of HTML in Custom Taxonomy Meta Field
- Advanced AND tax_query in sidebar with 2 taxonomies
- Create WordPress taxonomies based on theme settings
- Alternative for is_taxonomy() to workaround theme’s default sidebar
- Get custom taxonomy term url on archive page
- I’ve got a function that auto creates taxonomy terms – Can it auto delete them as well?
- Get custom taxonomy value of post and output posts in same taxonomy
- Head Code for Custom Taxonomy
- Adding new terms to custom taxonomy
- List posts grouped by children of a custom taxonomy