Example #1
6
 protected function comment($comment, $depth, $args)
 {
     // each comment markup, without </li>!
     $classes = implode(' ', get_comment_class()) . ($comment->comment_author_email == get_the_author_meta('email') ? ' author-comment' : '');
     // get typical wp comment classes and if comment belong post autor add "author-comment" class
     echo '<li id="li-comment-' . get_comment_ID() . '" class="' . $classes . '">' . "\n";
     // parent tag with classes and uniq id
     echo '<div id="comment-' . get_comment_ID() . '">' . "\n";
     // anchor element with this id need to anchor links on comments works
     echo get_avatar($comment, 64) . "\n";
     // show avatar with size 64x64 px
     echo '<p class="meta">Posted by: ' . get_comment_author() . "\n";
     // comment autor name
     echo ' ' . get_comment_author_email();
     // comment autor email
     echo ' ' . get_comment_author_url();
     // comment autor url
     echo ' On ' . get_comment_date('F j, Y') . ' at ' . get_comment_time() . '</p>' . "\n";
     // date and time of comment creating
     if ('0' == $comment->comment_approved) {
         echo '<em class="comment-awaiting-moderation">Your comment is awaiting moderation</em>' . "\n";
     }
     // if comment is not approved notify of it
     comment_text() . "\n";
     // display comment text
     $reply_link_args = array('depth' => $depth, 'reply_text' => 'Reply on it', 'login_text' => 'You must be logged to post comments');
     echo get_comment_reply_link(array_merge($args, $reply_link_args));
     // display reply link
     echo '</div>' . "\n";
     // anchor element end
 }
Example #2
1
 protected function comment($comment, $depth, $args)
 {
     // разметка каждого комментария, без закрывающего </li>!
     $classes = implode(' ', get_comment_class()) . ($comment->comment_author_email == get_the_author_meta('email') ? ' author-comment' : '');
     // берем стандартные классы комментария и если коммент пренадлежит автору поста добавляем класс author-comment
     echo '<li id="li-comment-' . get_comment_ID() . '" class="' . $classes . '">' . "\n";
     // родительский тэг комментария с классами выше и уникальным id
     echo '<div id="comment-' . get_comment_ID() . '">' . "\n";
     // элемент с таким id нужен для якорных ссылок на коммент
     echo get_avatar($comment, 64) . "\n";
     // покажем аватар с размером 64х64
     echo '<p class="meta">Автор: ' . get_comment_author() . "\n";
     // имя автора коммента
     //echo ' '.get_comment_author_email(); // email автора коммента
     echo ' ' . get_comment_author_url();
     // url автора коммента
     echo ' <br>Добавлено ' . get_comment_date('F j, Y') . ' в ' . get_comment_time() . "\n";
     // дата и время комментирования
     if ('0' == $comment->comment_approved) {
         echo '<em class="comment-awaiting-moderation">Ваш комментарий будет опубликован после проверки модератором.</em>' . "\n";
     }
     // если комментарий должен пройти проверку
     comment_text() . "\n";
     // текст коммента
     $reply_link_args = array('depth' => $depth, 'reply_text' => 'Ответить', 'login_text' => 'Вы должны быть залогинены');
     echo get_comment_reply_link(array_merge($args, $reply_link_args));
     // выводим ссылку ответить
     echo '</div>' . "\n";
     // закрываем див
 }
function jhfn_comment($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    //print_r($comment);
    /* Check if post is by Author for special styling */
    $isByAuthor = false;
    if ($comment->comment_author_email == get_the_author_meta('email')) {
        $isByAuthor = true;
    }
    ?>
  

<li>
    <h4><span><?php 
    echo $comment->comment_author;
    ?>
</span> wrote:</h4>
    <?php 
    comment_text();
    ?>
    <p class="commentDate">
        Written on <?php 
    printf(__('%1$s at %2$s'), get_comment_date('n/j/Y'), get_comment_time('g:ia'));
    ?>
 <?php 
    edit_comment_link(__('Edit'), '  ', '');
    ?>
    </p>
</li>

<?php 
}
Example #4
0
function mytheme_comment($comment, $args, $depth) {
    $GLOBALS['comment'] = $comment;
?>
    <li <?php comment_class(); ?> id="li-comment-<?php comment_ID() ?>">
        <div id="comment-<?php comment_ID(); ?>">

            <div class="comment-author vcard">
                <?php echo get_avatar($comment, $size = '48', $default = '<path_to_url>'); ?>
            </div>
            
        <?php if ($comment->comment_approved == '0') : ?>
                <em><?php _e('Your comment is awaiting moderation.') ?></em>
                <br />
        <?php endif; ?>

                <div class="comment-meta commentmetadata">
                    <p class="comment_autor">
                        <?php printf(__('%s'), get_comment_author_link()) ?>
                    </p>
                    <p class="comment_date">
                        <?php printf(__('%1$s - %2$s'), get_comment_date('M j, Y'), get_comment_time()) ?>
                    </p>
                </div>
                
                <div class="comment_contet">
                    <?php comment_text() ?>

                       <?php edit_comment_link('editar', '<div class="editar reply">', '</div>'); ?>
                </div>

                 
        </div>
    </li>
    <?php
            }
Example #5
0
/**
 * Comment meta
 */
function franz_comment_meta($comment)
{
    global $post;
    $meta = array();
    $meta['attr'] = array('class' => 'comment-attr', 'meta' => sprintf(__('%1$s on %2$s at %3$s', 'franz-josef'), '<span class="comment-author">' . franz_comment_author_link($comment->user_id) . '</span>', '<span class="comment-date">' . get_comment_date(), get_comment_time() . '</span>'));
    if ($comment->user_id === $post->post_author) {
        $meta['author'] = array('class' => 'author-cred label', 'meta' => __('Author', 'franz-josef'));
    }
    $meta = apply_filters('franz_comment_meta', $meta);
    if (!$meta) {
        return;
    }
    ?>
    <ul class="comment-meta col-md-9 col-xs-12">
        <?php 
    foreach ($meta as $item) {
        ?>
        <li class="<?php 
        echo esc_attr($item['class']);
        ?>
"><?php 
        echo $item['meta'];
        ?>
</li>
        <?php 
    }
    ?>
    </ul>
    <?php 
}
Example #6
0
function secret_comment($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    ?>
    <li class="list-group-item" id="li-comment-<?php 
    comment_ID();
    ?>
">
        <div class="media container">
            <div class="media-left">
                <?php 
    if (function_exists('get_avatar') && get_option('show_avatars')) {
        echo get_avatar($comment, 48);
    }
    ?>
            </div>
            <div class="media-body">
                <div class="row" id="comment-<?php 
    comment_ID();
    ?>
">
                        <div class="col-md-4">
                            <?php 
    printf(__('<cite class="author_name">%s</cite>'), get_comment_author_link());
    ?>
                            &nbsp;&nbsp;&nbsp;
                            <?php 
    edit_comment_link('修改');
    ?>
                        </div>
                        <div class="col-md-4">
                            发表于:<?php 
    echo get_comment_time('Y-m-d H:i');
    ?>
                        </div>

                </div>
                <div class="row">
                    <div class="col-md-8">
                        <?php 
    if ($comment->comment_approved == '0') {
        ?>
                            <em>你的评论正在审核,稍后会显示出来!</em><br />
                        <?php 
    }
    ?>
                        <?php 
    comment_text();
    ?>
                    </div>
                </div>
            </div>
            <div class="row">
                <?php 
    comment_reply_link(array_merge($args, array('reply_text' => '回复', 'depth' => $depth, 'max_depth' => $args['max_depth'])));
    ?>
            </div>
        </div>
<?php 
}
/**
 * Template callback for GeoMashupQuery::list_comments()
 *
 * Use the newer form of template, where the individual comment template goes in 
 * a function that matches the callback argument to list_comments
 *
 * @since 1.3
 * @access public
 * @package GeoMashup
 *
 * @param object $comment The comment to display
 * @param array $args Arguments from wp_list_comments
 * @param mixed $depth Nested depth
 */
function geo_mashup_comment_default($comment, $args, $depth)
{
    // Enable the WordPress comment functions
    GeoMashupQuery::set_the_comment($comment);
    // From here to the closing curly brace should look like a familiar template
    ?>
	<div id="div-comment-<?php 
    comment_ID();
    ?>
" class="<?php 
    comment_class('');
    ?>
">
		<div class="comment-author vcard">
		<?php 
    printf(__('<cite class="fn">%s</cite> <span class="says">says:</span>'), get_comment_author_link());
    ?>
		</div>
		<div class="comment-meta commentmetadata">
			<a href="<?php 
    echo esc_html(get_comment_link($comment->comment_ID));
    ?>
"><?php 
    printf(__('%1$s at %2$s'), get_comment_date(), get_comment_time());
    ?>
</a>
		</div>
		<?php 
    comment_text();
    ?>

	</div>
<?php 
}
Example #8
0
function reverie_comments($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    ?>
	<li <?php 
    comment_class();
    ?>
>
		<article id="comment-<?php 
    comment_ID();
    ?>
">
			<header class="comment-author vcard">
				<?php 
    echo get_avatar($comment, $size = '40');
    ?>
				<?php 
    printf(__('<cite class="fn">%s</cite>', 'reverie'), get_comment_author_link());
    ?>
				<time datetime="<?php 
    echo comment_date('c');
    ?>
"><a href="<?php 
    echo htmlspecialchars(get_comment_link($comment->comment_ID));
    ?>
"><?php 
    printf(__('%1$s', 'reverie'), get_comment_date(), get_comment_time());
    ?>
</a></time>
				<?php 
    edit_comment_link(__('(Edit)', 'reverie'), '', '');
    ?>
			</header>
			
			<?php 
    if ($comment->comment_approved == '0') {
        ?>
       			<div class="notice">
					<p class="bottom"><?php 
        _e('Your comment is awaiting moderation.', 'reverie');
        ?>
</p>
          		</div>
			<?php 
    }
    ?>
			
			<section class="comment">
				<?php 
    comment_text();
    ?>
			</section>
			
			<?php 
    comment_reply_link(array_merge($args, array('depth' => $depth, 'max_depth' => $args['max_depth'])));
    ?>
			
		</article>
<?php 
}
Example #9
0
function format_comment($comment, $args, $depth)
{
    echo '<div ';
    comment_class();
    echo ' id="li-comment-';
    comment_ID();
    echo '">
        <div class="row-fluid">
            <div class="span9">
                <p>';
    comment_text();
    echo '</p>
            </div>

            <div class="span3">';
    echo get_avatar($comment->comment_author_email, 60);
    echo '<h6>
        <a href="';
    comment_author_url();
    echo '">';
    comment_author();
    echo '</a>											
                </h6>
                <small>';
    printf(__('%1$s', DOMAIN), get_comment_date(), get_comment_time());
    echo '</small>
            </div>
        </div>
    </div>';
}
function jrd_comment($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    //print_r($comment);
    /* Check if post is by Author for special styling */
    $isByAuthor = false;
    if ($comment->comment_author_email == get_the_author_meta('email')) {
        $isByAuthor = true;
    }
    ?>
  

<li class="clearfix">
    <div class="author">
        <h6><?php 
    echo $comment->comment_author;
    ?>
</h6>
        <p class="timestamp"><?php 
    printf(__('%1$s at %2$s'), get_comment_date('n/j/Y'), get_comment_time('g:ia'));
    ?>
</p>
    </div>
    <div class="commenttext">
        <?php 
    comment_text();
    ?>
    </div>
</li>

<?php 
}
Example #11
0
function sandbox_ping($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    extract($args, EXTR_SKIP);
    ?>
<li <?php 
    comment_class(sandbox_comment_class(false));
    ?>
 id="comment-<?php 
    comment_ID();
    ?>
">
	<div class="comment-metadata">
		<?php 
    printf(__('By %1$s on %2$s at %3$s', 'sandbox'), get_comment_author_link(), get_comment_date(), get_comment_time());
    ?>
		<?php 
    edit_comment_link(__('(Edit)', 'sandbox'), ' ', '');
    ?>
	</div>
	<div class="comment-mod"><?php 
    if ($comment->comment_approved == '0') {
        _e('<em>Your trackback/pingback is awaiting moderation.</em>', 'sandbox');
    }
    ?>
</div>
	<?php 
    comment_text();
}
function thematic_pings($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    ?>
    		<li id="comment-<?php 
    comment_ID();
    ?>
" class="<?php 
    thematic_comment_class();
    ?>
">
    			<div class="comment-author"><?php 
    printf(__('By %1$s on %2$s at %3$s', 'thematic'), get_comment_author_link(), get_comment_date(), get_comment_time());
    edit_comment_link(__('Edit', 'thematic'), ' <span class="meta-sep">|</span> <span class="edit-link">', '</span>');
    ?>
</div>
    <?php 
    if ($comment->comment_approved == '0') {
        _e('\\t\\t\\t\\t\\t<span class="unapproved">Your trackback is awaiting moderation.</span>\\n', 'thematic');
    }
    ?>
            <div class="comment-content">
    			<?php 
    comment_text();
    ?>
			</div>
<?php 
}
    function sun_comment($comment, $args, $depth)
    {
        $GLOBALS['comment'] = $comment;
        ?>
	<li class="comment" id="li-comment-<?php 
        comment_ID();
        ?>
">
	  <div>
      <?php 
        echo get_avatar($comment, $size = '60');
        ?>
      <div class="comment-meta">
        <span class="author"><?php 
        echo get_comment_author_link();
        ?>
</span>
        <span class="date">on <?php 
        echo get_comment_date() . ' ' . get_comment_time();
        ?>
</span>
        <span class="reply"><?php 
        comment_reply_link(array_merge($args, array('depth' => $depth, 'max_depth' => $args['max_depth'])));
        ?>
</span>
      </div>
      <div class="comment-body">
        <?php 
        comment_text();
        ?>
      </div>
<?php 
    }
Example #14
0
function show_comment($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    ?>

  <li <?php 
    comment_class();
    ?>
 >
    <div class="avatar">
      <?php 
    echo get_avatar($comment, 70, $default = 'mystery');
    ?>
    </div>
    <div class="author">
      <?php 
    echo get_comment_author_link();
    ?>
    </div>
    <div class="comment-meta">
      <?php 
    printf('%1$s — %2$s', get_comment_date(), get_comment_time());
    ?>
    </div>
    <?php 
    comment_text();
    ?>
    <div class="reply">
      <?php 
    comment_reply_link(array_merge($args, array('depth' => $depth, 'max_depth' => $args['max_depth'])));
    ?>
    </div>
  </li>
<?php 
}
Example #15
0
function sandbox_10_ping($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    extract($args, EXTR_SKIP);
    ?>
<li <?php 
    comment_class(sandbox_comment_class(false));
    ?>
 id="comment-<?php 
    comment_ID();
    ?>
">
	<div class="comment-author"><?php 
    printf(__('By %1$s on %2$s at %3$s', 'sandbox'), get_comment_author_link(), get_comment_date(), get_comment_time());
    edit_comment_link(__('Edit', 'sandbox'), ' <span class="meta-sep">|</span> <span class="edit-link">', '</span>');
    ?>
</div>
<?php 
    if ($comment->comment_approved == '0') {
        _e('\\t\\t\\t\\t\\t<span class="unapproved">Your trackback is awaiting moderation.</span>\\n', 'sandbox');
    }
    ?>
	<?php 
    comment_text();
}
Example #16
0
<?php function studiofolio_comment($comment, $args, $depth) {
  $GLOBALS['comment'] = $comment; ?>
  <li <?php comment_class(); ?>>
    <article id="comment-<?php comment_ID(); ?>">
      <header class="comment-author vcard">
        <?php echo get_avatar($comment, $size = '32'); ?>
        <?php printf(__('<cite class="fn">%s</cite>', 'studiofolio'), get_comment_author_link()); ?>
        <time datetime="<?php echo comment_date('c'); ?>"><a href="<?php echo htmlspecialchars(get_comment_link($comment->comment_ID)); ?>"><?php printf(__('%1$s', 'studiofolio'), get_comment_date(),  get_comment_time()); ?></a></time>
        <?php edit_comment_link(__('(Edit)', 'studiofolio'), '', ''); ?>
      </header>

      <?php if ($comment->comment_approved == '0') : ?>
        <div class="alert alert-block fade in">
          <a class="close" data-dismiss="alert">&times;</a>
          <p><?php _e('Your comment is awaiting moderation.', 'studiofolio'); ?></p>
        </div>
      <?php endif; ?>

      <section class="comment">
        <?php comment_text() ?>
      </section>

      <?php comment_reply_link(array_merge($args, array('depth' => $depth, 'max_depth' => $args['max_depth']))); ?>

    </article>
<?php } ?>
Example #17
0
function garland_comment($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    extract($args, EXTR_SKIP);
    ?>
<li <?php 
    comment_class(empty($args['has_children']) ? '' : 'parent');
    ?>
id="comment-<?php 
    comment_ID();
    ?>
">
	<div id="div-comment-<?php 
    comment_ID();
    ?>
">
	<span class="comment-author vcard">
	<?php 
    if ($args['avatar_size'] != 0) {
        echo get_avatar($comment, $args['avatar_size']);
    }
    ?>
	<?php 
    printf(__('<cite class="fn">%s</cite> Says:', 'kubrick'), get_comment_author_link());
    ?>
	</span>
	<?php 
    if ($comment->comment_approved == '0') {
        ?>
	<em><?php 
        _e('Your comment is awaiting moderation.', 'kubrick');
        ?>
</em>
	<?php 
    }
    ?>
	<br />

	<small class="comment-meta commentmetadata"><a href="#comment-<?php 
    comment_ID();
    ?>
" title=""><?php 
    printf(__('%1$s at %2$s', 'kubrick'), get_comment_date(), get_comment_time());
    ?>
</a> <?php 
    edit_comment_link(__('edit', 'kubrick'), '&nbsp;&nbsp;', '');
    ?>
</small>

	<?php 
    comment_text();
    ?>
	<div class="reply">
		<?php 
    comment_reply_link(array_merge($args, array('add_below' => 'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth'])));
    ?>
	</div>
	</div>
<?php 
}
Example #18
0
function mytheme_comment($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    ?>
<li <?php 
    comment_class();
    ?>
 id="li-comment-<?php 
    comment_ID();
    ?>
">
	<div id="comment-<?php 
    comment_ID();
    ?>
">
		<div class="comment-author vcard">
			<?php 
    echo get_avatar($comment, $size = '40');
    ?>
			<?php 
    /* printf(__('<cite class="fn">%s</cite> <span class="says">says:</span>'), get_comment_author_link()) */
    ?>
			<cite class="fn"><?php 
    comment_author_link();
    ?>
</cite>
			<span class="comment-meta commentmetadata"><a href="<?php 
    echo htmlspecialchars(get_comment_link($comment->comment_ID));
    ?>
"><?php 
    printf(__('%1$s at %2$s'), get_comment_date(), get_comment_time());
    ?>
</a><?php 
    edit_comment_link(__('(Edit)'), '  ', '');
    ?>
</span>
			
		</div>
		<?php 
    if ($comment->comment_approved == '0') {
        ?>
		<em class="approved"><?php 
        _e('Your comment is awaiting moderation.');
        ?>
</em>
		<br />
		<?php 
    }
    ?>
		<?php 
    comment_text();
    ?>
		<div class="reply">
			<?php 
    comment_reply_link(array_merge($args, array('depth' => $depth, 'max_depth' => $args['max_depth'])));
    ?>
		</div>
	</div>
<?php 
}
Example #19
0
function cp_comments($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    ?>
    <li id="comment-<?php 
    comment_ID();
    ?>
" <?php 
    comment_class();
    ?>
>
    <div <?php 
    comment_class();
    ?>
 class="comment">

      <div class="col-xs-2 author-avatar">
        <?php 
    echo get_avatar($comment, 80);
    ?>
      </div>
      <div class="col-xs-10">
        <h5><?php 
    echo get_comment_author_link();
    ?>
</h5>
        <span class="comment-date"><?php 
    _e('Posted on', 'concept');
    ?>
 <?php 
    echo get_comment_date();
    ?>
 <?php 
    _e('at', 'concept');
    ?>
 <?php 
    echo get_comment_time();
    ?>
</span>
        <?php 
    if ($comment->comment_approved == '0') {
        ?>
          <em><?php 
        _e('Your comment is awaiting moderation.', 'concept');
        ?>
</em>
        <?php 
    }
    ?>
        <?php 
    comment_text();
    ?>
        <?php 
    comment_reply_link(array_merge($args, array('reply_text' => __('Reply', 'concept'), 'depth' => $depth, 'max_depth' => $args['max_depth'])));
    ?>
      </div>
    </div>
    <?php 
}
Example #20
0
function py_comments($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    ?>
  <li <?php 
    comment_class();
    ?>
>
    <article class="callout" id="comment-<?php 
    comment_ID();
    ?>
">
      <header class="comment-author">
        <?php 
    echo get_avatar($comment, $size = '96', $default = get_template_directory_uri() . ' /img/yeti-avatar.png');
    ?>
        <div class="author-meta">
          <?php 
    printf(__('<cite class="fn">%s</cite>', 'projectyeti'), get_comment_author_link());
    ?>
          <time datetime="<?php 
    echo comment_date('c');
    ?>
"><a href="<?php 
    echo esc_url(get_comment_link($comment->comment_ID));
    ?>
"><?php 
    printf(__('%1$s', 'projectyeti'), get_comment_date(), get_comment_time());
    ?>
</a></time>
          <?php 
    edit_comment_link(__('(Edit)', 'projectyeti'), '', '');
    ?>
        </div>
      </header>
      <?php 
    if ($comment->comment_approved == '0') {
        ?>
        <div class="notice">
        <p class="bottom"><?php 
        _e('Your comment is awaiting moderation.', 'projectyeti');
        ?>
</p>
          </div>
      <?php 
    }
    ?>
      <div class="comment">
        <?php 
    comment_text();
    ?>
      </div>
      <footer><?php 
    comment_reply_link(array_merge($args, array('depth' => $depth, 'max_depth' => $args['max_depth'])));
    ?>
</footer>
    </article>
<?php 
}
Example #21
0
function uxebu_comment($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    static $comment_number = 0;
    ?>
     <div <?php 
    comment_class();
    ?>
 id="comment-<?php 
    comment_ID();
    ?>
">
        <div class="bd">
            <?php 
    comment_text();
    ?>
                <?php 
    if ($comment->comment_approved == '0') {
        ?>
                    <em class="mhx"><?php 
        _e('Your comment is awaiting moderation.');
        ?>
</em>
                <?php 
    }
    ?>
            </div>
        <div class="ft">
            <div class="col-2">
                <span class="comm-nbr"><?php 
    $comment_number++;
    echo $comment_number;
    ?>
</span>
            </div>
            <div class="col-10 last">
                <div class="media mbs">
                    <div class="img-ext media-xs">
                        <?php 
    echo get_avatar($comment, $size = '48', $default = '<path_to_url>');
    ?>
                    </div>
                    <div class="bd comm-meta">
                    <p class="mrm"> <?php 
    printf(__('%1$s &mdash; %2$s'), get_comment_date(), get_comment_time('h:i a'));
    ?>
<br />
                        <strong><?php 
    printf(__('%s'), get_comment_author_link());
    ?>
</strong></p>
                    <div><!-- bd comm-meta -->
                </div><!-- media -->
            </div><!-- col-10 -->
        </div><!-- ft -->
     </div><!-- id comm -->
</div>
<?php 
}
function kindel_comment($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    extract($args, EXTR_SKIP);
    $classes = array('clearfix');
    if (!empty($args['has_children'])) {
        $classes[] = 'parent';
    }
    ?>
	<div <?php 
    comment_class($classes);
    ?>
 id="comment-<?php 
    comment_ID();
    ?>
" itemscope itemtype="http://schema.org/UserComments">
		<div class="comment-author clearfix">
			<div class="author-avatar">
				<?php 
    if ($args['avatar_size'] != 0) {
        echo get_avatar($comment, $args['avatar_size']);
    }
    ?>
			</div>
			<div class="author-meta">
				<span class="fn author-name" itemprop="creator"><?php 
    echo get_comment_author_link();
    ?>
</span>
				<time itemprop="commentTime" datetime="<?php 
    echo get_comment_time('c');
    ?>
" class="comment-time"><?php 
    printf(__('%s ago', 'kindel'), human_time_diff(get_comment_time('U'), current_time('timestamp')));
    ?>
</time>
			</div>
		</div>
		<div class="comment-body" itemprop="commentText">
		  <?php 
    if ($comment->comment_approved == '0') {
        ?>
		    <p><em class="comment-awaiting-moderation"><?php 
        _e('Your comment is awaiting moderation.', 'kindel');
        ?>
</em></p>
		  <?php 
    } else {
        comment_text();
        comment_reply_link(array_merge($args, array('add_below' => 'comment', 'depth' => $depth, 'max_depth' => $args['max_depth'])));
    }
    ?>
		</div>
		<?php 
    edit_comment_link(__('edit', 'kindel'));
    ?>

<?php 
}
Example #23
0
function hui_comment($comment, $args, $depth)
{
    global $commentcount;
    $GLOBALS['comment'] = $comment;
    if (!$commentcount) {
        $page = get_query_var('cpage') - 1;
        $cpp = get_option('comments_per_page');
        $commentcount = $cpp * $page;
    }
    ?>
<li class="comment-list-entry">
	<article>
		<footer class="comment-info">
			<?php 
    echo get_avatar($comment, 36);
    ?>
			<span class="comment-author"><?php 
    comment_author_link();
    ?>
</span>
			<span class="edit"><?php 
    edit_comment_link('编辑', '', '');
    ?>
</span>
			<span class="date">发表于 <time datetime="<?php 
    printf('%1$sT%2$s', get_comment_date('Y-m-d'), get_comment_time('H:i:s'));
    ?>
+00:00"><?php 
    printf('%1$s %2$s', get_comment_date('Y-m-d'), get_comment_time('H:i:s'));
    ?>
</time></span>
			<span class="floor"><?php 
    if (!($parent_id = $comment->comment_parent)) {
        printf('%1$s楼', ++$commentcount);
    }
    ?>
</span>
		</footer>
		<div class="comment-content">
		<?php 
    if ($comment->comment_approved == '0') {
        ?>
			<p>您的<?php 
        echo $comment_title;
        ?>
正在审核中,请耐心等待,以下是您正在审核中的<?php 
        echo $comment_title;
        ?>
内容:</p>
		<?php 
    }
    ?>
			<?php 
    comment_text();
    ?>
		</div>
	</article>
<?php 
}
Example #24
0
 function evolve_comment_time()
 {
     $time = '<span class="comment-date">';
     $time .= get_comment_time();
     $time .= '</span>' . "\n";
     return apply_filters('evolve_comment_time', (string) $time);
     // Available filter: evolve_comment_time
 }
Example #25
0
    /**
     * Template for comments and pingbacks.
     * Used as a callback by wp_list_comments() for displaying the comments.
     */
    function orbit_comment($comment, $args, $depth)
    {
        $GLOBALS['comment'] = $comment;
        switch ($comment->comment_type) {
            case 'pingback':
            case 'trackback':
                ?>
	<li>
		<?php 
                _e('Pingback:', 'orbit');
                ?>
 <?php 
                comment_author_link();
                edit_comment_link(__('Edit', 'orbit'), '', '');
                ?>
	<?php 
                break;
            default:
                ?>
	<li>
		<?php 
                $avatar_size = 68;
                if ('0' != $comment->comment_parent) {
                    $avatar_size = 39;
                }
                echo get_avatar($comment, $avatar_size);
                // translators: 1: comment author, 2: date and time
                printf(__('%1$s on %2$s said:', 'orbit'), sprintf('%s', get_comment_author_link()), sprintf('<a href="%1$s"><time pubdate datetime="%2$s">%3$s</time></a>', esc_url(get_comment_link($comment->comment_ID)), get_comment_time('c'), sprintf(__('%1$s at %2$s', 'orbit'), get_comment_date(), get_comment_time())));
                ?>

		<?php 
                edit_comment_link(__('Edit', 'orbit'), '', '');
                ?>
				
		<?php 
                if ($comment->comment_approved == '0') {
                    ?>
		
			<?php 
                    _e('Your comment is awaiting moderation.', 'orbit');
                    ?>
					
		<?php 
                }
                ?>

		<?php 
                comment_text();
                ?>

		<?php 
                comment_reply_link(array_merge($args, array('reply_text' => __('Reply &darr;', 'orbit'), 'depth' => $depth, 'max_depth' => $args['max_depth'])));
                ?>
	
		<?php 
                break;
        }
    }
Example #26
0
function html5_comment($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    ?>
   <article <?php 
    comment_class();
    ?>
 id="comment-<?php 
    comment_ID();
    ?>
">
      
      <header class="comment-author vcard">
         <?php 
    echo get_avatar($comment, $size = '48', $default = '<path_to_url>');
    ?>

         <?php 
    printf(__('<cite class="fn">%s</cite> <span class="says">says:</span>'), get_comment_author_link());
    ?>
      
      </header>
      
      <?php 
    if ($comment->comment_approved == '0') {
        ?>
         <em><?php 
        _e('Your comment is awaiting moderation.');
        ?>
</em>
      <?php 
    }
    ?>

      <div class="comment-meta commentmetadata"><time datetime="<?php 
    the_time('Y-m-d');
    ?>
" pubdate><a href="<?php 
    echo htmlspecialchars(get_comment_link($comment->comment_ID));
    ?>
"><?php 
    printf(__('%1$s at %2$s'), get_comment_date(), get_comment_time());
    ?>
</a></time><?php 
    edit_comment_link(__('(Edit)'), '  ', '');
    ?>
</div>

      <?php 
    comment_text();
    ?>

      <div class="reply"> <?php 
    comment_reply_link(array_merge($args, array('depth' => $depth, 'max_depth' => $args['max_depth'])));
    ?>
 </div>
<?php 
}
Example #27
0
    function mytheme_comment($comment, $args, $depth)
    {
        $GLOBALS['comment'] = $comment;
        ?>
   <li <?php 
        comment_class();
        ?>
 id="li-comment-<?php 
        comment_ID();
        ?>
">
     <div class="comment_wrap" id="comment-<?php 
        comment_ID();
        ?>
">
         <div class="comearea">
        <div class="comall">
                <a href="<?php 
        echo htmlspecialchars(get_comment_link($comment->comment_ID));
        ?>
"><?php 
        printf(__('%1$s at %2$s'), get_comment_date(), get_comment_time());
        ?>
</a>
               <?php 
        echo get_avatar($comment, $size = '64', $default = 'http://1.gravatar.com/avatar/df570c18646109a825ae4acc8d13712d?s=64&d=&r=G');
        ?>
               <?php 
        printf(__('<p class="author">%s</p>'), get_comment_author_link());
        ?>
               <div class="reply">
                   <?php 
        comment_reply_link(array_merge($args, array('reply_text' => 'Ответить', 'depth' => $depth, 'max_depth' => $args['max_depth'])));
        ?>
 <br/>  <?php 
        edit_comment_link(__('(Edit)'), '  ', '');
        ?>
               </div>
        </div>
            <div class="comtxt">
                   <?php 
        if ($comment->comment_approved == '0') {
            ?>
               <em><?php 
            _e('Your comment is awaiting moderation.');
            ?>
</em>
               <br />
               <?php 
        } else {
            comment_text();
        }
        ?>
            </div>
         </div>
     </div>
<?php 
    }
Example #28
0
function advanced_comment($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    ?>
   <div class="comment-container" id="comment-<?php 
    comment_ID();
    ?>
">
        <div class="gravatar"> 
			<?php 
    echo get_avatar($comment);
    ?>
        </div>
        <span class="comment-author">
            <?php 
    echo get_comment_author_link();
    ?>
说道:
        </span>
        <div class="comment-time">
			<?php 
    echo get_comment_date();
    echo get_comment_time();
    ?>
            <span class="edit-comment"><?php 
    edit_comment_link('修改');
    ?>
</span>
        </div>
        <div class="comment-content">
			<?php 
    echo comment_text();
    ?>
        </div>
		<div class="comment-reply" onclick="replyComment(<?php 
    echo $comment->comment_post_ID;
    ?>
,<?php 
    echo $comment->comment_ID;
    ?>
,'<?php 
    echo get_option('siteurl');
    ?>
'+'/wp-comments-post.php','<?php 
    echo comment_author();
    ?>
','<?php 
    echo comment_author_email();
    ?>
','<?php 
    echo comment_author_url();
    ?>
')">
        	回复
      	</div>
   </div>
<?php 
}
Example #29
0
    function start_el(&$output, $comment, $depth, $args, $id = 0)
    {
        $depth++;
        $GLOBALS['comment_depth'] = $depth;
        $GLOBALS['comment'] = $comment;
        if (!empty($args['callback'])) {
            call_user_func($args['callback'], $comment, $args, $depth);
            return;
        }
        extract($args, EXTR_SKIP);
        ?>

  <li <?php 
        comment_class('media comment-' . get_comment_ID());
        ?>
>
    <?php 
        echo get_avatar($comment, $size = '64');
        ?>
    <div class="media-body">
      <h4 class="media-heading"><?php 
        echo get_comment_author_link();
        ?>
</h4>
      <time datetime="<?php 
        echo comment_date('c');
        ?>
"><a href="<?php 
        echo htmlspecialchars(get_comment_link($comment->comment_ID));
        ?>
"><?php 
        printf(__('%1$s', 'roots'), get_comment_date(), get_comment_time());
        ?>
</a></time>
      <?php 
        edit_comment_link(__('(Edit)', 'roots'), '', '');
        ?>

      <?php 
        if ($comment->comment_approved == '0') {
            ?>
        <div class="alert">
          <?php 
            _e('Your comment is awaiting moderation.', 'roots');
            ?>
        </div>
      <?php 
        }
        ?>

      <?php 
        comment_text();
        ?>
      <?php 
        comment_reply_link(array_merge($args, array('depth' => $depth, 'max_depth' => $args['max_depth'])));
        ?>
  <?php 
    }
Example #30
0
/**
 * Utility functions
 */
function flatio_comment($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    ?>
    <?php 
    $add_below = '';
    ?>
    <li <?php 
    comment_class('media');
    ?>
 id="comment-<?php 
    comment_ID();
    ?>
">

            <a class="pull-left">
                <?php 
    echo get_avatar($comment, 64);
    ?>
            </a>

            <div class="media-body">

                <div class="comment-author meta">
                    <strong><?php 
    echo get_comment_author_link();
    ?>
</strong>
                    <?php 
    printf(__('Posted %1$s at %2$s', 'flatio'), esc_attr(get_comment_date()), esc_attr(get_comment_time()));
    ?>
</a><?php 
    edit_comment_link(__(' - Edit', 'flatio'), '  ', '');
    comment_reply_link(array_merge($args, array('reply_text' => __('Reply', 'flatio'), 'add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth'])));
    ?>
                </div>

                <div class="comment-text">
                    <?php 
    if ($comment->comment_approved == '0') {
        ?>
                    <em><?php 
        echo __('Your comment is awaiting moderation.', 'flatio');
        ?>
</em>
                    <br />
                    <?php 
    }
    ?>
                    <?php 
    comment_text();
    ?>
                </div>

        </div>

<?php 
}