forked from bonfirelab/bearded
-
Notifications
You must be signed in to change notification settings - Fork 0
/
comment-ping.php
33 lines (25 loc) · 1.1 KB
/
comment-ping.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
<?php
/**
* Pingback Comment Template
*
* The pingback comment template displays an individual pingback comment.
*
* @package Chun
* @subpackage Template
* @since 0.1.0
* @author Justin Tadlock <[email protected]>
* @copyright Copyright (c) 2012, Justin Tadlock
* @link http://themehybrid.com/themes/chun
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*/
global $post, $comment;
?>
<li id="comment-<?php comment_ID(); ?>" class="<?php hybrid_comment_class(); ?>">
<?php do_atomic( 'open_comment' ); // chun_open_comment ?>
<div class="comment-side">
<?php echo hybrid_avatar(); ?>
</div>
<?php echo apply_atomic_shortcode( 'comment_author', '[comment-author]'); ?>
<?php echo apply_atomic_shortcode( 'comment_meta', '<div class="comment-meta">[comment-published][comment-permalink before="<span class=\'comment-meta-divider\'>/</span>"][comment-edit-link before="<span class=\'comment-meta-divider\'>/</span>"]</div>' ); ?>
<?php do_atomic( 'close_comment' ); // chun_close_comment ?>
<?php /* No closing </li> is needed. WordPress will know where to add it. */ ?>