WordPress . get_comment_time() , . PHP:

<?php
//     
$last_comment = get_comments(array(
    'number' => 1,
    'post_id' => get_the_ID(), // ID  
));

// ,          (,  30 )
if ($last_comment && strtotime($last_comment[0]>comment_date) > strtotime('30 days')) {
    //     
    echo '<a href="' . get_comment_author_url() . '">' . get_comment_author() . '</a>';
} else {
    //      
    echo get_comment_author();
}
?>

, , 30 . , , . .