Got the answer, encase anyone else needs it, here it is.
<?php
$currauthor_id = get_the_author_meta('ID');
$terms = get_terms('your_taxonomy', array(
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => 1,
) );
foreach ( $terms as $term ) {
$myquery = new WP_Query( array(
'author' => $currauthor_id,
'post_type' => 'post_type_name',
'your_taxonomy' => $term->slug,
'posts_per_page' = > -1,
));
?>
<h2>Term: <?php echo $term->name; ?></h2>
<ul>
<?php if ( $myquery->have_posts() ){
while ( $myquery->have_posts() ) : $myquery->the_post(); ?>
<li><a href="https://wordpress.stackexchange.com/questions/98046/<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; } ?>
</ul>
<?php wp_reset_postdata();?>
<?php } ?>
Related Posts:
- Get the terms of a custom taxonomy for a specific author in author template
- get_terms by custom post type
- Get Posts by Custom Post Type ,Taxonomy, and Term
- How to limit the number of terms (terms acts like categories)
- Display Authors Comments on Profile Page
- How do I list custom taxonomy terms without the links?
- wp_insert_term doesn’t work with custom post type’s taxonomy
- show tags of custom post type ONLY
- Count posts that have specific taxonomy term attached
- Retrieve single term slug
- Author archive only for custom post type
- display multiple term post from taxonomy in a single page
- Adding a term name from a custom taxonomy assigned to a post link displayed by a wp_query loop based on another taxonomy
- Get list of terms of current taxonomy archive for another taxonomy
- List all custom post type posts from a given category?
- Get all taxonomies for all post types
- Category page only displaying the posts from a custom type
- How can I show a custom post type for users in the authors.php file?
- Have a Custom Post Type index page display taxonomy items instead of posts
- How to check the terms in single custom post type template
- Custom post taxonomies as tax_query terms?
- 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
- Display latest x posts from all categories in Custom Post Type/Taxonomy
- Conditional statement for if archive page has posts which contain certain taxonomies/categories/tags, show those terms
- Output terms for custom post types
- Author posts not appearing for custom post type
- Custom Taxonomy Terms in Menu lead to which page?
- Custom Post Type Taxonomy Term Order by Title
- How to automatically create a terms based on each post of a post type
- Get List of Terms based on a given term (different taxonomy)
- CPT : Next or Previous term link when has not adjacent post
- Order posts by taxonomy terms
- automatically select taxonomy based on post meta
- get taxonomies from terms
- Display Custom Post Type Based on Taxonomy With WP_Query()
- 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
- Displaying the Taxonomy and a Queried Term on a taxonomy.php page?
- WordPress add taxonomies/terms list as a menu in archive page
- Create an additional template page for every term taxonomy
- Taxonomy Grid Archive Help?
- Custom post type URL returns 404 error page
- List a custom post type’s posts ordered by nested custom taxonomy
- get_the_term_list() wanting to loop through the returned values
- List custom taxonomy terms
- Display associated taxonomy child name on single CPT page
- Issue On Listing Woocommerce Parent Tag List
- Taxonomy Archive URL + Template
- Get a custom post type’s taxonomy type term names displayed as checkboxes and filter
- How to list custom taxonomy terms without the hyperlinks?
- How to determ a custom post type url?
- How to make id user can be view content
- Query for a custom post taxonomy
- Display posts on parent post if author coincides
- Multiple Custom Post Type with different Taxonomies
- How to create groups like that in buddypress?
- Wrap an X amount of taxonomy posts in a separate Row in WordPress
- Author archive custom posts only?
- Custom taxonomy- only output relevant terms
- Set a static page as a user profile page?
- order taxonomy alphabetical
- I want to create an archive and single page for a custom taxonomy for a custom post type
- Organising custom taxonomies and custom post types
- Taxonomy’s title
- Display all posts from single taxonomy term
- Connect 8 Taxonomies to One (Main) taxonomy. How to?
- Update Cateogory Taxonomy Count for Attachment Post Type
- How to show post which has the specific taxonomy terms?
- Displaying WordPress posts from post and custom post type in custom taxonomy
- Custom post type taxonomy template and URL confusion
- Display all Custom taxonomy terms and their relevant custom posts
- I want to link an author to everything from any post type that they publish on the website
- WordPress get all post with like in terms [duplicate]
- Permalinks for a custom post type – with a page template (custom query) and taxonomy archive
- Get posts of an specific term of a custom taxonomy
- Best approach to allow front-end display of posts’ reviewers?
- Custom Taxonomy is disabled on Edit page
- Override “Parent” input for custom taxonomy
- Decrement term in for each
- Best way to group posts based on custom post type terms
- Display content based on Author Custom Post type
- Listing Custom Post Post from certain category
- Get author image for posts in loop on custom type posts page
- Hide Custom Taxonomy title if not associated with another Custom Taxomony
- get children from current variable (taxonomy) via shortcode
- Custom Post Type and Taxonomies, creating the corresponding template file and loop the data
- Related posts by taxonomy [duplicate]
- How to pass taxonomy terms to WP_Query along with $args?
- How to create TEMPLATES for TAXONOMIES? What I have to change in this code?
- Custom Post Status & Taxonomies
- Custom Post Type parent slug as menu item
- Sorting on Taxonomy in archive page
- Get list of CPT posts in *current* post’s taxonomy term
- Fetch posts list from fist CPT taxonomy term and list under 2. CPT
- Prevent repetitive terms in get_the_term_list
- Default taxonomy ‘post_tag’ added to CPT managing by custom role : nothing in the metabox