-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsidebar-right.php
40 lines (38 loc) · 1.6 KB
/
sidebar-right.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!-- Right Sidebar -->
<div class="side-bar right-bar nicescroll">
<h4 class="text-center">Recent Comments</h4>
<div class="contact-list nicescroll">
<ul class="list-group contacts-list">
<?php
$args = array(
'status' => 'approve',
'number' => 8
);
$comments = get_comments($args);
foreach($comments as $comment) :
?>
<li class="list-group-item" id="parent-<?php echo $comment->comment_ID;?>">
<a data-toggle="collapse" data-parent="#parent-<?php echo $comment->comment_ID;?>" href="#cmn-<?php echo $comment->comment_ID;?>" aria-expanded="false">
<!--div class="avatar">
<img src="#">
</div-->
<span class="name"><?php echo ucfirst(get_comment_author( $comment_ID )); ?></span>
</a>
<i class="md md-textsms"></i>
<span class="clearfix"></span>
<div id="cmn-<?php echo $comment->comment_ID;?>" class="panel-collapse collapse" aria-expanded="false">
<small>
Comment On
<a href="<?php echo get_permalink($comment->comment_post_ID);?>">
<?php echo get_post($comment->comment_post_ID)->post_title;?>
</a>
</small>
<blockquote style="font-size:11px;"><?php echo $comment->comment_content;?></blockquote>
</div>
<span class="clearfix"></span>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>
<!-- /Right-bar -->