Olá Cristy, tudo bem? Pode tentar o seguinte:
<?php
$args = array(
‘author’ => $current_user->ID,
‘orderby’ => ‘post_date’,
‘order’ => ‘ASC’,
‘posts_per_page’ => 50
);
$_posts = get_posts($args);
foreach($_posts as $post){
$comments = wp_count_comments($post->ID);
echo($post->post_title . ” / ” . $comments->total_comments . ” Comentários neste post” . “
“);
}
?>