This can be done using WP_Query using author and tax_query.
Something like this:
$args = array(
'post_type' => 'post',
'author' => get_current_user_id(),
'tax_query' => array(
array(
'taxonomy' => 'custom-taxonomy',
'operator' => 'EXISTS'
),
),
);
$query = new WP_Query( $args );
And then check if posts are returned through this query.
Please note that this code is not tried or tested and may contain syntax errors.
Related Posts:
- Adding Multiple Values to a Post Meta Key
- Get Posts Under Custom Taxonomy
- Update post counts (published, draft, unattached) in admin interface
- How to Display a List of Users Who Have Made at Least 1 Post?
- Find out who deleted a page or post?
- Displaying the category name of a custom post type
- Passing a hardcoded page/post ID into `get_post`
- MySQL Query to Retrieve Category from wp_posts
- Show WordPress Custom Taxonomy Items Based On a Selected Item From Another Custom Taxonomy
- WordPress: How to get the current logged in author page URL?
- Exclude posts that only have the ‘Uncategorized’ category [duplicate]
- disable password protected page for logged users
- How are terms connected with posts in database?
- Force “Submit to review” when a post is updated
- Create new category upon save based on post information
- meta_box or custom_field as a second tinymce post-instance?
- Importing data from spreadsheet into wordpress DB, along with custom taxonomies and their terms
- Custom Taxonomies Incorrectly Counting Revisions?
- Overview with latest edited posts and pages
- wp_update_term is always launched after wp_insert_term
- Navigation link to specific user page
- Get how many days since last post of the current user
- Hide comments awaiting moderation from user who submitted the comments
- get_terms parent for current product only
- deleting terms programmatically
- Query All users that has post
- How do I get the slug of a custom taxonomy category of a post?
- Limit number of posts a user can make per minute?
- How do I allow users to follow a post and then allow admins to email all users who have followed that post?
- How to display different single post template based on author?
- wp_insert_post let users post to without login…broke
- Get user’s most published categories
- Show the author’s count of total amount of posts assign to a custom taxonomy term
- Allow anonymous users to post to my site for moderation
- How to filter the taxonomy terms based on another taxonomy term
- How can I add a meta-box to the posts editor containing all items of a custom taxonomy as checkbox?
- wp query with dynamic taxonomies and terms?
- disable column on post and user list
- how to find user ids of all commenters in a post
- How to list users and their post amount?
- Is there any way to allow users to access content before it’s published?
- Get Posts via Taxonomy Term Name with Space
- UberMenu list current user’s posts as menu items
- Why won’t my taxonomy query show up?
- How to set up multiple taxonomies for groups of posts
- Sidebar links for different pages
- Create post for every user?
- count the total number of comments the user has received for his published posts
- Query all posts of a custom taxonomy term
- Avoid duplicate post from same Taxonomy
- Preserve term order per post in a non-hierarchical taxonomy
- Get posts by name and taxonomy term
- Restrict users post for himself
- Set terms in a custom post
- Get posts of ONE taxonomy term of custom post type
- How to allow logged in users to post anonymously
- Allow public to post on blog
- Which post does a taxonomy term belongs to?
- current post with current author
- Choose whether to automatically add a taxonomy with the same name as the post
- Setting posts_per_page for taxonomy term template
- How to insert 2 args into 1 Wp_Query for a slideshow
- How to verify wp user password by sql query in wp? [closed]
- Help with Taxonomies
- How can i delay reading posing in 3days for not logined user?
- Posts list in custom taxonomy
- Encountering “Wrong nonce. Action prohibitied.” when trying to alter User Role and unable to Post via WP Admin
- Get Posts Under Custom Taxonomy
- How to render taxonomy in loop of custom post_type
- Users problem (multi-author plus multisite)
- How to display posts via custom taxonomy terms using checkboxes?
- sql select for post_title and a term name
- How to allow visitors to filter posts by multiple taxonomies
- How to add tags (custom taxonomy) to post class css?
- Saving custom fields to a custom taxonomy
- How to get Tags with specific post id
- How do I manage my users post before publish?
- How do I retrieve a users’ last 5 posts?
- Gather posts into a cart/lightbox and share with another user
- Copy taxonomy terms from one post to another programmatically
- Loop parent terms {display posts} AND loop child terms {display posts}
- Displaying posts that belong to a specific author
- Get posts and include taxonomy term
- Assign published posts to another user automatically
- Display posts of specific category term
- Add field to user meta table in database when link is clicked
- Hide comments and posts posted by other user
- How to Display Posts From Category Within a Custom Taxonomy?
- Automatically create a default set of posts for each new registered user
- Form to post new post with custom taxonomies
- Summary of Posts by an User
- How to show a custom taxonomy in the theme?
- Display a list of users who have viewed the post you are viewing
- Parent category / child category posts
- Echo Text If User Is Logged in But NOT the Author of post
- wp_set_object_terms NOT working on CPT, but wp_set_post_terms does
- Deleted a user with administrator rights. Now all the data/content/images are lost. how to recover them back
- Only allow posts with a specific term to only be viewed by other authors with the same term in their post
- Programatically adding custom filters to post list
- Count the number of a post types associated with another post type