If you look in your theme’s comments.php
file, you should see a call to wp_list_comments
. If that has a callback parameter– something like this array( 'callback' => 'twentyeleven_comment' )
— then your theme has its own comment display function. Find that function. It is probably in function.php
but no promises. If not, you need to make one. That function controls the comment display. Inside that function do something like this:
$user = get_user_by('login',$comment->comment_author);
if ($user) {
$umeta = get_user_meta($user->ID);
echo '################################';
var_dump($umeta);
echo '################################';
}
And you should have what you need– just a matter of formatting it.
Related Posts:
- Getting Post Comments for post ID using WP_Query() and a Custom Loop?
- What are the current recommended best-practices for comments.php?
- Threaded comments – deleting parent comment leads to orphan comments
- Does WordPress Allow Blank/Empty Comment Submissions In WordPress?
- Can I change what fields are displayed in the Comments form?
- Is it possible to move a comment that should be a reply to another comment?
- I have tried using Plugins to remove 72K comments with no success
- Change order of comment fields
- How to auto empty comment trash after X days
- Allow the comment author to delete their own comments
- Display Custom comments field number
- Remove the deleted user comment
- Adding comments section to website integrated WordPress instance
- My posts show 2 comment forms
- Disallowed Tag Present in AMP WordPress ()
- Delete comments function
- I have tried using Plugins to remove 72K comments with no success
- Let user delete comment on front end only
- Deleting users do not deletes coments
- delete user not working
- Why are the comments disabled by default on my custom_post_types?
- Get comments for more than one post
- “Categories” for comments?
- Allow anonymous comments, but prevent spam [closed]
- Where to remove from comment’s feed?
- Allow guests comments on single post
- Delete all user comments
- Why do I get email notifications about comments that WordPress has already determined are spam?
- Delayed commenting
- “Leave a comment” link even when you can’t
- Display number of comment replies
- User can post only one comment per day on one page
- Last comment page first with full number of comments?
- Only subscriber role user can comment not other
- customize comment form
- Relaxing unescaped HTML filtering inside tags?
- How to get the result of comments_number() as a string instead of printing it out?
- Should I still worry about paginated comments with the latest wordpress versions?
- How to dont allow registered users to comment without being logged in?
- edit comments capability for authors
- Publish a message on facebook after having posted a comment
- Users with custom roles can’t read each other’s comments
- Why is_wp_error() is not returning false even there’s no defined error
- wp_insert_comment and security
- How can someone submit a comment when my site has no comment field?
- Separete trackbacks/pings and numbered comments
- Show comments in a popup
- How to display html in only the first level of WP comments?
- Set noindex page-comment from Pages 2, 3 and More?
- How can I convert anonymous commenters into registered users?
- your comment awaiting moderation message sometimes not appearing
- Limit comments per user per post
- Filter In Reply comments from WordPress Admin Panel
- blank page after submitting a comment
- Remove post navigation links
- Notify post author for a new comment on his post?
- Which filter/hook to use for styling comments?
- How should I get the original comment while processing the reply
- I wish to remove, disable or hide the comment authors’ links to their sites from my home page
- Admin can enter JavaScript – potential security risk?
- How to stop ultimate members to redirect comment authors to user profile?
- Replace comments with a dummy text
- How do I stop the comments going to my email?
- Disable only the comment form/box itself?
- How to implement just the wp commenting area on my custom site?
- anyone can help me to know whats going wrong? [closed]
- Why there is still an approved comment after deleting all?
- Get comment id of the individual comments in comment list when modifying comment posted using comment text filter
- Custom comment field not showing when logged-in
- get_comment_meta not behaving as expected
- get_comment_author_link not working properly
- How do I get a array, with the right order of the nested comments?
- Display last comments on home page
- How to show last comment on hover?
- Clicking Comment “Reply” Button only replies to first comment
- show comment with statuse
- How to add code for wp-comments-post.php over functions.php?
- Is there a way to export WordPress comments to a non-wordpress, HTML coded site?
- comment form code redirect to wp_comments_post.php with blank page
- Parent comment’s author display_name
- How to show a list of comments on home page from all posts?
- WordPress Custom Local Avatar not showing in comments
- Change commenters email to display name
- wp list all users who haven’t commented on a post
- Creating a “walled garden” of comments
- Adding buttons to wp-admin/edit-comments
- How Can I display the Current Logged-In User’s Comment at the Top of the Comments Section in WordPress?
- Comments closed only for contributors
- Comment-Meta doesn’t work with latest wordpress update
- Sort post by last commented
- Listing comment author role code problem
- How to allow special characters in comment name?
- add field comment [duplicate]
- Let users comment on categories in WordPress
- Loop not displaying comments_popup_link
- Display of comment_date within get_comments?
- prevent duplicate comments using wp_insert_comment
- Query comments with non-empty ‘author_url’ value on Admin Comments Screen
- Customize the new comment notifications sent to the post author after the comment is approved
- Get approved comments or comments that the author is me