Comments have an associated author to them.
In a section called “Private Comments” – Query for all comments belonging to the current post where wp_comments->comment_author_email equals the email of the current user.
Checkout the wp_comments table. It has 15 or so fields you can filter when displaying comments.
EDIT:
The code would look something like this:
$comment_array = get_approved_comments($post->ID);
$current_user = wp_get_current_user();
foreach($comment_array as $comment){
if ($comment->comment_author_email == $current_user->user_email) {
echo $comment->comment_content ;
}
}
You loop through the list of comments for the current post and filter by author email.
Related Posts:
- How do I create a custom post type for a training CMS in WordPress?
- custom comments form for custom post type
- How can I include active content in a custom post type?
- Where to put my code: plugin or functions.php?
- Should I use custom post types or a custom database tables for plugin development?
- Style custom columns in admin panels (especially to adjust column cell widths)
- Where, When, & How to Properly Flush Rewrite Rules Within the Scope of a Plugin?
- How do I change the author of a custom post type?
- Custom Post Type Plugin: Where Do I Put The Template?
- Best way to flush_rewrite_rules for custom post type, in a mu-plugins plugin?
- How to Add Custom Taxonomy To Woocommerce Plugin
- Why are the comments disabled by default on my custom_post_types?
- Why are comments and trackbacks still getting through for custom post types?
- Using add_theme_support inside a plugin
- Creating a Custom Post Type as a Plugin? Why?
- Quick edit screen customization
- Any way to make posts inherit properties/taxonomies through a single assigned taxonomy
- Mini-Site Strategy
- The Great Plugin Nomenclature Contest of 2011
- Prevent trash/delete action on specific post types
- How to add custom content template part for a custom post type on main query using a plugin
- How to completely disable a taxonomy archive on the frontend?
- Display Authors Comments on Profile Page
- List all posts commented by current user
- How do you create an archive for a custom post type from a plugin?
- How to add a button to custom post type’s posts-page
- Loading custom page template via plugin
- Why The Init Hook For Custom Post Types
- How to set a fall back template for a custom post type in a plugin?
- How to add multiple images to custom post type?
- Creating a custom public user page
- wordpress plugin error handling
- Custom Comment Types
- How to get term link that crosses different custom post types?
- register_taxonomy with multiple object type and update_count_callback
- Redirect after deleting post and keep track of pagination
- How often do you need to register_post_type?
- modify all posts of a category to “no comments allowed”
- get_edit_post_link() not working as expected when passed id in plugin
- Custom comment status possible?
- Where to put archive-{post-type}.php
- Render a different post/template from within the template_include action?
- Is flush_rewrite_rules necessary when creating a custom post type? Why?
- feed links for custom post type pages
- How to use a dedicated template for the Custom Post Type from a plugin?
- how do I group content in magazine-style ‘issues’?
- How do I Make a custom post type get a custom post template in a plugin
- Seperating custom post type comments from regular blog posts comments
- Add comments meta fields to comments metabox on post edit screen
- Exclude post_type from admin comments_list
- Determine which template-{slug}.php is being loaded
- How to append text to title of Custom Post Type post (without affecting all titles on page)?
- Remove Slug from Custom Post Type results in 404
- WordPress metabox file upload in custom post [duplicate]
- working Custom Post Type and Widget code no longer works when moved from functions.php to plugin
- Recent comments on author page?
- WordPress custom post action hook
- Downsides to not using built-in “Posts” post type?
- Unable to filter on field on edit.php page
- Multiple Permalinks for custom post type post
- On clicking on the category name the page is redirecting on 404 pge
- Insert slider (Custom Post Type) into pages
- wp_query and comment_parent – select only posts with top level comments
- changing default comment form arguments [duplicate]
- WP Query group/order by category name
- Save or update data when custom post published
- Comment moderation on custom post types
- Remove POST_TYPE from custom post type permalink
- Uploaded image not appearing in custom post type
- Custom Taxonomy and tax_query Issue?
- Use a textarea for a custom post type
- Automatically check “Allow comments” for custom post type [duplicate]
- Using posts and postmeta table to store custom Address Book Plugin data
- How to register custom post types in a plugin?
- Actions that Run on Admin Edit Page Load After Posts Are Queried
- Row actions not showing? Why?
- Make custom post type display as a page
- template_redirect not working, apparently for no reason
- How to: add option to add more checkboxes on custom post type
- Custom role capabilities to administrator not taking effect (no plugin)
- How do I add a custom button to my “edit” list? ( edit.php?post_type= ) beside “Add New”
- How to add multiple featured image in meta box in post editor?
- How to add notification in the sidebar of the administration panel when a Custom post type is created? [duplicate]
- Hierarchical or Non-hierarchical Custom Post Type in Real World Example
- how to set default value for checkbox in wordpress
- How to append element after thumbnail
- How do I include drag-and-drop in a plugin?
- Disable comments from showing up public for Custom Post Type
- Custom Post Type get_post_type_archive_link( $post_type ) returns false
- How do I set the link in the Custom Post Type admin menu?
- How to List Thumbnails based on Custom Categories
- Custom Post Type loops and Disqus
- Adding Meta Boxes while Registering a Post Type in a Class
- How to have the right design for a custom post type without accessing themes
- Dynamic Custom Post Type Plugin
- How to rename image at uploading on specific plugin or post-type in WordPress
- “Allow Comments” box cannot be checked
- handling csv data with a custom post type
- How do I alter the position of a Custom Post Type menu item within my plugin admin menu?
- Customize permalink when creating a post