amy-d
6/5/2015 - 9:43 PM

PHP: WP - Recent Comments

PHP: WP - Recent Comments

<?php $comments = get_comments('status=approve&number=3'); ?>
<?php foreach ($comments as $comment) { ?>
       	<?php $title = get_the_title($comment->comment_post_ID); ?>
     	<div class="recent-comment">
		<a href="<?php echo get_permalink($comment->comment_post_ID); ?>" rel="external nofollow" title="<?php echo $title; ?>">
			<div class="recent-comment__count"><?php $comment_count = wp_count_comments( $comment->comment_post_ID ); echo $comment_count->approved; ?></div>
			<div class="comment_meta">
				<div class="recent-comment__text">
					<?php // echo $title; ?>
			           		<?php echo wp_html_excerpt( $comment->comment_content, 150 ); ?>
				</div>
			</div>
	        </a>
	</div>
<?php } ?>