try this:
$args = array(
'author' => get_current_user_id(),
'post_type' => 'YOUR_CUSTOMPOST_TYPE',
);
$author_posts = new WP_Query( $args );
if ($author_posts->have_posts()): while ($author_posts->have_posts()) : $author_posts->the_post();
//DISPLAY CONTENTS HERE
endwhile; endif;
wp_reset_postdata();
wp_reset_query();
replace YOUR_CUSTOMPOST_TYPE
with your post type,
what it does is finds posts of certain post type whose author is currently logged in user.
Currently it queries posts whose author is currently logged in user, you can list other users by using get_users()
, full description here, and set 'author' => get_current_user_id()
to 'author' => $ID_OF_USER
Related Posts:
- Search multiple custom fields by using meta_query
- Custom Form / Search with Custom Post Type Data
- How can I fetch all the dates from custom fields from various different custom post types and show / list them at one place in ascending order?
- Sort CPT by taxonomy AND THEN by custom field
- what is the correct way to compare dates in a WP query_posts meta_query
- Multiple orderby values in WP_Query
- don’t publish custom post type post if a meta data field isn’t valid
- Prevent pre_get_posts filter on specific post type
- WP_Query orderby custom field then post_date in one query
- how to filter by last name for custom post
- Filtering a WP_Query meta_query by numeric values isn’t working
- Custom Taxonomy with Custom Post Type Finds No Posts
- Sorting a query by custom field date
- How can I generate a RSS feed based on a custom WP_Query?
- Filtering a WP Query result
- Display Custom Post Type Fields
- Add custom field to media attachment image attribute in post editor
- Search Custom Post Type with all meta attached?
- How to sort CPT by custom meta value (date), and return posts month by month
- Custom Post Type with Custom Title
- WP_Query on custom post type not displaying, multiple loops & get_template_part
- Using new WP_Query in shortcode in a custom field causes the main post content to not display
- WordPress query by multiple Custom fields and order by date
- How can I customize “Pages” admin (edit.php) and “Edit Page” admin (post.php) for bulk edit of custom content type?
- Comparing timestamps in meta query doesn’t work
- Display two post types ordered by two custom fields
- Get post info inside modal window?
- WP Query group/order by category name
- Having trouble with custom date field for CPT query (WordPress)
- Display posts if a custom field value is equal to another custom field value
- Community and User Generated Content Website: Have been thinking about Drupal but leaning on WordPress heavily
- Sort by two dates. Default entry date and custom field if present
- Impossible to get Attachments Outside WordPress?
- Related links – from other sites
- Saving repeated option values in a custom query
- Conditional to modify query results
- Filtering by Post Meta Custom Fields – Performance
- wp_query to find posts by year and month
- WP Query—Relationship between two custom post types and their fields
- How to dynamically attach pictures to a carousel
- Assigning the same custom meta box to multiple post types
- Dynamically add / duplicate custom meta in custom post types
- How to insert content from another Custom Post type into Post?
- Get all Posts If has same custom field values in Posts
- Custom Post type and Custom Field WP_Query
- How to structure a site with product variations pages?
- Including Custom Meta with posts_where query
- WP_Query: include custom post type only with specific meta value
- WP_Query orderby modified to include custom meta changes
- WordPress custom loop filter by meta_key and value with serialize data
- Returning a list of custom post types excluding those without a specific meta_value
- Two near-identical custom field types – one works, the other doesn’t . What can cause this?
- wp_query check if integer exists in custom field’s array
- How can I get the number of custom post type posts that have a specific attachment image set?
- Problem querying Custom post type by custom fields
- Orderby CPT custom fields not working
- WP_Query order by custom field, then randomly order some of results
- Query custom post type with ACF Date
- Including metaboxes from custom post types in global search — continued
- Query Multiple Custom Posts by Custom Fields
- Get Posts by multiple custom fields is not working
- Order Custom Post Type by Custom Field Value
- WP_Query custom post type query not showing the exact post type
- First custom field value (out of several) displayed twice after query
- Cannot save CPT meta box
- Possible to filter custom post type with multiple meta data?
- don’t publish custom post type post if a meta data field isn’t valid
- How does order=asc effect a wp_query (its acting pretty weird in a loop)
- Query based on custom fields start and end date
- Redirect to another page using contact form 7? [closed]
- Detect inside a custom query the kind of post type to assign custom classes
- DIsplaying URL of custom field in last post of certain taxonomy && post type
- custom post data – how to
- WP Query ‘posts_per_page’
- How to customize work area / admin area in a custom post type without plugins?
- Display post from a date range from custom field
- How to display custom field value on page?
- post_per_page ignored in WP_Query
- meta query multiple values for the same key
- Sort custom post archives by a meta value from a different custom post type?
- Displaying posts inside table having issues
- Custom post types – meta_query: search lesson which starts sooner
- Post Filtered by Custom Field Value
- Automatic Set Category For A Custom Post Type
- How to Disable option of meta field if that option is selected for any other post in custom post type?
- Filter custom WP_Query by first letter of a custom field – hopefully using Search and Filter Pro?
- sorting in wp query based on custom field value
- Meta_Query refuses to return results
- Multiple WordPress Sites, Same Database but Filtered Content
- WordPress query in which condition uses custom field
- WordPress loop add heading before first of type
- How to make a shortcode for my WP_Query Loop? [duplicate]
- Display ACF object field data using Elementor Custom Query
- WordPress custom field sorting, weird behavior: the latest post is at the end
- WP Query + custom fields: How to query event posts from the current date backwards 6 months and organize it month by month?
- How to display *block number* instead *date value* on WordPress posts?
- Query order by a numeric ACF field
- WP_Query not using relation key as expected and not producing any results
- Use Custom Field to Display Post Loop
- Where can I find the missing page sections in wordpress?