WordPress get current user comments with post

Get current user comments with post

方法一、使用WP_Comment_Query():

取當前使用者評論及帖子

<?php
$args = [
	'author__in' => get_current_user_id(),
	'status' => 'approve',
	'type'      => 'comment',
	'post_type' => 'post',
];
$user_comments = WP_Comment_Query($args);
foreach($user_comments as &$comment){
	$comment->comment_post = get_post($comment->comment_post_ID);
	//print_r($comment);
	echo $comment->comment_post->post_title.'<br/>';
	
}

 

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *

這個網站採用 Akismet 服務減少垃圾留言。進一步了解 Akismet 如何處理網站訪客的留言資料