• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP get_comment_class函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中get_comment_class函数的典型用法代码示例。如果您正苦于以下问题:PHP get_comment_class函数的具体用法?PHP get_comment_class怎么用?PHP get_comment_class使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了get_comment_class函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: comment

 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";
     // закрываем див
 }
开发者ID:Ivan26ru,项目名称:gp-wp,代码行数:30,代码来源:functions.php


示例2: comment

 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
 }
开发者ID:seredniy,项目名称:clean-wp-template,代码行数:31,代码来源:functions.php


示例3: get_fields_for_render

 public function get_fields_for_render()
 {
     $entry_id = $this->comment->comment_ID;
     $post_id = $this->comment->comment_post_ID;
     $avatar_size = apply_filters('liveblog_entry_avatar_size', self::default_avatar_size);
     $comment_text = get_comment_text($entry_id);
     $css_classes = implode(' ', get_comment_class('', $entry_id, $post_id));
     $entry = array('entry_id' => $entry_id, 'post_id' => $post_id, 'css_classes' => $css_classes, 'content' => self::render_content($comment_text, $this->comment), 'original_content' => apply_filters('liveblog_before_edit_entry', $comment_text), 'avatar_size' => $avatar_size, 'avatar_img' => get_avatar($this->comment->comment_author_email, $avatar_size), 'author_link' => get_comment_author_link($entry_id), 'entry_date' => get_comment_date(get_option('date_format'), $entry_id), 'entry_time' => get_comment_date(get_option('time_format'), $entry_id), 'timestamp' => $this->get_timestamp(), 'is_liveblog_editable' => WPCOM_Liveblog::is_liveblog_editable());
     return $entry;
 }
开发者ID:dawbs,项目名称:liveblog,代码行数:10,代码来源:class-wpcom-liveblog-entry.php


示例4: commentClass

 private function commentClass()
 {
     $classes = get_comment_class();
     $comment_class = 'class="';
     foreach ($classes as $class) {
         // print_r($class . '<br>');
         $comment_class .= $class . ' ';
     }
     $comment_class .= '"';
     return $comment_class;
 }
开发者ID:Beth3346,项目名称:wordpress-boilerplate,代码行数:11,代码来源:Comments.php


示例5: render

 public static function render($comment, $args, $depth)
 {
     self::set_context($comment);
     // Note that WordPress closes the div for you, do not close it here!
     // https://codex.wordpress.org/Function_Reference/wp_list_comments
     printf('<div class="%s">', implode(' ', get_comment_class(self::base_classes($comment), $comment, $comment->comment_post_ID)));
     $comment_actions = '';
     if (comments_open($comment->comment_post_ID)) {
         $comment_actions = html('a', array('class' => 'reply-link', 'href' => sprintf('mailto:{{{reply_to_comment_%s}}}?subject=%s', $comment->comment_ID, rawurlencode(sprintf(__('Reply to %s', 'Postmatic'), $comment->comment_author)))), html('img', array('src' => 'https://s3-us-west-2.amazonaws.com/postmatic/assets/icons/reply.png', 'width' => '13', 'height' => '8')), __('Reply', 'Postmatic'));
     }
     echo html('div class="comment-header"', get_avatar($comment), html('div class="author-name"', get_comment_author_link($comment->comment_ID)), html('div class="comment-body"', apply_filters('comment_text', get_comment_text($comment->comment_ID), $comment), $comment_actions));
 }
开发者ID:postmatic,项目名称:beta-dist,代码行数:12,代码来源:email-comment-rendering.php


示例6: mystique_comment_class

function mystique_comment_class($class = '')
{
    global $post, $comment;
    $classes = get_comment_class();
    if (get_option('show_avatars')) {
        $classes[] = 'withAvatars';
    }
    if ($comment->user_id > 0) {
        $user = new WP_User($comment->user_id);
        if (is_array($user->roles)) {
            foreach ($user->roles as $role) {
                $classes[] = "role-{$role}";
            }
        }
        $classes[] = 'user-' . sanitize_html_class($user->user_nicename, $user->user_id);
    } else {
        $classes[] = 'reader name-' . get_comment_author();
    }
    // user classes
    if (!empty($class)) {
        if (!is_array($class)) {
            $class = preg_split('#\\s+#', $class);
        }
        $classes = array_merge($classes, $class);
    }
    echo join(' ', apply_filters("comment_class", $classes));
}
开发者ID:nottombrown,项目名称:vlab,代码行数:27,代码来源:core.php


示例7: hybrid_comment_class

/**
 * Sets a class for each comment. Sets alt, odd/even, and author/user classes. Adds author, user, 
 * and reader classes. Needs more work because WP, by default, assigns even/odd backwards 
 * (Odd should come first, even second).
 *
 * @since 0.2.0
 * @global $wpdb WordPress DB access object.
 * @global $comment The current comment's DB object.
 */
function hybrid_comment_class($class = '')
{
    global $post, $comment, $hybrid;
    /* Gets default WP comment classes. */
    $classes = get_comment_class($class);
    /* Get the comment type. */
    $classes[] = get_comment_type();
    /* User classes to match user role and user. */
    if ($comment->user_id > 0) {
        /* Create new user object. */
        $user = new WP_User($comment->user_id);
        /* Set a class with the user's role. */
        if (is_array($user->roles)) {
            foreach ($user->roles as $role) {
                $classes[] = "role-{$role}";
            }
        }
        /* Set a class with the user's name. */
        $classes[] = 'user-' . sanitize_html_class($user->user_nicename, $user->ID);
    } else {
        $classes[] = 'reader';
    }
    /* Comment by the entry/post author. */
    if ($post = get_post($post_id)) {
        if ($comment->user_id === $post->post_author) {
            $classes[] = 'entry-author';
        }
    }
    /* Get comment types that are allowed to have an avatar. */
    $avatar_comment_types = apply_filters('get_avatar_comment_types', array('comment'));
    /* If avatars are enabled and the comment types can display avatars, add the 'has-avatar' class. */
    if (get_option('show_avatars') && in_array($comment->comment_type, $avatar_comment_types)) {
        $classes[] = 'has-avatar';
    }
    /* Join all the classes into one string and echo them. */
    $class = join(' ', $classes);
    echo apply_filters("{$hybrid->prefix}_comment_class", $class);
}
开发者ID:nixter,项目名称:d.school,代码行数:47,代码来源:context.php


示例8: single_row

 /**
  * @global WP_Post $post
  *
  * @param object $comment
  */
 public function single_row($comment)
 {
     global $post;
     $the_comment_class = wp_get_comment_status($comment);
     if (!$the_comment_class) {
         $the_comment_class = '';
     }
     $the_comment_class = join(' ', get_comment_class($the_comment_class, $comment, $comment->comment_post_ID));
     if ($comment->comment_post_ID > 0) {
         $post = get_post($comment->comment_post_ID);
     }
     $this->user_can = current_user_can('edit_comment', $comment->comment_ID);
     echo "<tr id='comment-{$comment->comment_ID}' class='{$the_comment_class}'>";
     $this->single_row_columns($comment);
     echo "</tr>\n";
     $post = null;
 }
开发者ID:hpilevar,项目名称:WordPress,代码行数:22,代码来源:class-wp-comments-list-table.php


示例9: test_should_return_an_empty_array_for_invalid_comment_id

 /**
  * @ticket 33947
  */
 public function test_should_return_an_empty_array_for_invalid_comment_id()
 {
     $this->assertSame(array(), get_comment_class('foo', 12345));
 }
开发者ID:boonebgorges,项目名称:develop.wordpress,代码行数:7,代码来源:getCommentClass.php


示例10: single_row

 function single_row($a_comment)
 {
     global $post, $comment;
     $comment = $a_comment;
     $the_comment_class = join(' ', get_comment_class(wp_get_comment_status($comment->comment_ID)));
     $post = get_post($comment->comment_post_ID);
     $this->user_can = current_user_can('edit_comment', $comment->comment_ID);
     echo "<tr id='comment-{$comment->comment_ID}' class='{$the_comment_class}'>";
     echo $this->single_row_columns($comment);
     echo "</tr>\n";
 }
开发者ID:snagga,项目名称:urbantac,代码行数:11,代码来源:class-wp-comments-list-table.php


示例11: qb_comments

function qb_comments($comment, $args, $depth)
{
    $GLOBALS['comment'] = $comment;
    //$avatar 			= get_avatar( $comment, 48 );
    $comment_author_id = get_comment(get_comment_ID())->user_id;
    $comment_author_url = get_comment_author_url();
    if (has_wp_user_avatar($comment_author_id)) {
        //$avatar	= get_wp_user_avatar_src( $comment_author_id, 48 );
        $avatar = get_wp_user_avatar($comment_author_id, 48);
    } else {
        //$avatar = get_bloginfo( 'template_url' ) . '/images/default/48.png';
        // temporary: this is the same for now, for testing; eventually, it should fall back to default image or Facebook image or smt else
        //$avatar	= get_wp_user_avatar_src( $comment_author_id, 48 );
        $avatar = get_wp_user_avatar($comment_author_id, 48);
    }
    ?>

	<li <?php 
    get_comment_class();
    ?>
><?php 
    if ($comment_author_url) {
        echo '<a href="' . $comment_author_url . '">' . $avatar . get_comment_author() . '</a>';
    } else {
        echo $avatar . get_comment_author();
    }
    echo '<time class="timeago" datetime="' . get_comment_date('c') . '">' . get_comment_date('F j, Y') . '</time>';
    comment_text();
    //edit_comment_link( 'Edit', '<span class="edit">', '</span>' );
    if ($comment->comment_approved == '0') {
        echo '<em class="moderate">Your comment is awaiting moderation.</em>';
    }
    /*comment_reply_link(
    			array_merge(
    				$args,
    				array(
    					'reply_text'	=> 'Reply',
    					'depth' 		=> $depth,
    					'max_depth' 	=> $args['max_depth']
    				)
    			)
    		);*/
    echo '</li>';
}
开发者ID:vossavant,项目名称:phoenix,代码行数:44,代码来源:functions.php


示例12: momtaz_atts_comment

/**
 * Add attributes for the comment element.
 *
 * @return array
 * @since 1.3
 */
function momtaz_atts_comment($atts)
{
    $comment_id = get_comment_ID();
    if (empty($comment_id)) {
        return $atts;
    }
    $atts['id'] = "comment-{$comment_id}";
    $atts['class'] = get_comment_class();
    $atts['itemprop'] = 'comment';
    $atts['itemscope'] = 'itemscope';
    $atts['itemtype'] = 'http://schema.org/UserComments';
    return $atts;
}
开发者ID:mastinoz,项目名称:Momtaz-Framework,代码行数:19,代码来源:markup.php


示例13: adventure_tours_comment_renderer

 /**
  * Comment renderer function.
  *
  * @param  Comment $comment comment instance.
  * @param  array   $args    array of options.
  * @param  int     $depth   current depth level.
  * @return void
  */
 function adventure_tours_comment_renderer($comment, $args, $depth)
 {
     $commentHtml = get_avatar($comment, 90) . '<div class="comments__item__info">' . '<div class="comments__item__name">' . get_comment_author_link() . '</div>' . '<div class="comments__item__reply-link">' . get_comment_reply_link(array('depth' => $depth, 'max_depth' => $args['max_depth'], 'reply_text' => esc_html__('Reply', 'adventure-tours'), 'login_text' => '')) . '</div>' . '</div>' . '<div class="comments__item__date">' . get_comment_date() . '</div>' . '<div class="comments__item__text">' . get_comment_text() . '</div>';
     printf('<div class="%s" id="comment-%s">%s%s', implode(' ', get_comment_class('comments__item')), get_comment_ID(), $commentHtml, !empty($args['has_children']) ? '</div><div class="comments__item__reply">' : '');
 }
开发者ID:j-kenneth,项目名称:Expeero,代码行数:13,代码来源:comments.php


示例14: hybrid_get_comment_class

/**
 * Sets a class for each comment. Sets alt, odd/even, and author/user classes. Adds author, user, 
 * and reader classes. Needs more work because WP, by default, assigns even/odd backwards 
 * (Odd should come first, even second).
 *
 * @since  1.6.0
 * @access public
 * @global $comment The current comment's DB object
 * @return void
 */
function hybrid_get_comment_class($class = '')
{
    global $comment;
    /* Gets default WP comment classes. */
    $classes = get_comment_class($class);
    /* Get the comment type. */
    $comment_type = get_comment_type();
    /* If the comment type is 'pingback' or 'trackback', add the 'ping' comment class. */
    if ('pingback' == $comment_type || 'trackback' == $comment_type) {
        $classes[] = 'ping';
    }
    /* User classes to match user role and user. */
    if ($comment->user_id > 0) {
        /* Create new user object. */
        $user = new WP_User($comment->user_id);
        /* Set a class with the user's role(s). */
        if (is_array($user->roles)) {
            foreach ($user->roles as $role) {
                $classes[] = sanitize_html_class("role-{$role}");
            }
        }
        /* Set a class with the user's name. */
        $classes[] = sanitize_html_class("user-{$user->user_nicename}", "user-{$user->ID}");
    } else {
        $classes[] = 'reader';
    }
    /* Comment by the entry/post author. */
    if ($post = get_post(get_the_ID())) {
        if ($comment->user_id == $post->post_author) {
            $classes[] = 'entry-author';
        }
    }
    /* Get comment types that are allowed to have an avatar. */
    $avatar_comment_types = apply_filters('get_avatar_comment_types', array('comment'));
    /* If avatars are enabled and the comment types can display avatars, add the 'has-avatar' class. */
    if (get_option('show_avatars') && in_array($comment->comment_type, $avatar_comment_types)) {
        $classes[] = 'has-avatar';
    }
    /* Make sure comment classes doesn't have any duplicates. */
    return array_unique($classes);
}
开发者ID:jahir07,项目名称:bearded,代码行数:51,代码来源:context.php


示例15: enlightenment_comment

function enlightenment_comment($comment, $args, $depth)
{
    $defaults = array('comment_class' => 'comment-body' . (empty($args['has_children']) ? '' : ' parent'), 'comment_id' => 'comment-' . get_comment_ID(), 'comment_extra_atts' => '', 'header_tag' => current_theme_supports('html5', 'comment-list') ? 'header' : 'div', 'header_class' => 'comment-header', 'comment_content_tag' => 'div', 'comment_content_class' => 'comment-content', 'comment_content_extra_atts' => '', 'echo' => true);
    $defaults = apply_filters('enlightenment_comment_args', $defaults);
    $comment_reply_link_defaults = array('add_below' => 'comment', 'depth' => $depth, 'max_depth' => $args['max_depth'], 'before' => '<div class="reply">', 'after' => '</div>');
    $comment_reply_link_defaults = apply_filters('enlightenment_comment_reply_link_args', $comment_reply_link_defaults);
    $defaults = wp_parse_args($comment_reply_link_defaults, $defaults);
    $args = wp_parse_args($args, $defaults);
    $GLOBALS['comment'] = $comment;
    extract($args, EXTR_SKIP);
    if ('ul' == $args['style'] || 'ol' == $args['style']) {
        $args['style'] = 'li';
    } else {
        $args['style'] = current_theme_supports('html5', 'comment-list') ? 'article' : 'div';
    }
    do_action('enlightenment_before_comment', $comment, $args);
    echo enlightenment_open_tag($args['style'], join(' ', get_comment_class($args['comment_class'])), $args['comment_id'], $args['comment_extra_atts']);
    do_action('enlightenment_before_comment_header', $comment, $args);
    if (has_action('enlightenment_comment_header')) {
        echo enlightenment_open_tag($args['header_tag'], $args['header_class']);
        do_action('enlightenment_comment_header', $comment, $args);
        echo enlightenment_close_tag($args['header_tag']);
    }
    do_action('enlightenment_after_comment_header', $comment, $args);
    do_action('enlightenment_before_comment_content', $comment, $args);
    if (has_action('enlightenment_comment_content')) {
        echo enlightenment_open_tag($args['comment_content_tag'], $args['comment_content_class'], '', $args['comment_content_extra_atts']);
        do_action('enlightenment_comment_content', $comment, $args);
        echo enlightenment_close_tag($args['comment_content_tag']);
    }
    do_action('enlightenment_after_comment_content', $args, $comment);
}
开发者ID:brittbec13,项目名称:citizenmodern,代码行数:32,代码来源:comments.php


示例16: start

 public function start($comment, $args, $depth)
 {
     global $thesis;
     $GLOBALS['comment'] = $comment;
     echo str_repeat("\t", $this->tab_depth + 1), "<{$this->child_html} class=\"", esc_attr(implode(' ', get_comment_class())), "\" id=\"comment-", get_comment_ID(), "\">\n";
     $this->rotator(array('depth' => $this->tab_depth + 2));
 }
开发者ID:iaakash,项目名称:chriskeef,代码行数:7,代码来源:boxes.php


示例17: village_comment

    /**
     * Template for comments and pingbacks.
     *
     * Used as a callback by wp_list_comments() for displaying the comments.
     *
     * @since Acid 1.0
     */
    function village_comment($comment, $args, $depth)
    {
        $GLOBALS['comment'] = $comment;
        if (in_array("bypostauthor", get_comment_class())) {
            $is_author = true;
        } else {
            $is_author = false;
        }
        switch ($comment->comment_type) {
            case 'pingback':
            case 'trackback':
                ?>
	<li class="post pingback">
		<p><?php 
                _e('Pingback:', 'themevillage');
                ?>
 <?php 
                comment_author_link();
                edit_comment_link(__('(Edit)', 'themevillage'), ' ');
                ?>
</p>
	<?php 
                break;
            default:
                ?>
	<li <?php 
                comment_class();
                ?>
 id="li-comment-<?php 
                comment_ID();
                ?>
">
		<article id="comment-<?php 
                comment_ID();
                ?>
" class="comment">
			<div class="comment__container cf">

				<footer class="comment-author g one-sixth lap-one-fifth palm-one-whole">
						
						<div class="avatar-container">
							<?php 
                echo get_avatar($comment, 125);
                ?>
						</div>



					<div class="comment-meta commentmetadata">						
						<?php 
                edit_comment_link(__('(Edit)', 'themevillage'), ' ');
                ?>

					</div><!-- .comment-meta .commentmetadata -->

				</footer>

				<div class="comment-content g five-sixths lap-four-fifths palm-one-whole">
					<div class="name">
						<?php 
                echo get_comment_author_link();
                ?>
					</div>

						<?php 
                // Currently Disable is_author
                $is_author = false;
                if (true === $is_author) {
                    ?>
							<span class="is-author">
								<?php 
                    _e("Author", 'themevillage');
                    ?>
 </span>
							<br>						
							<?php 
                }
                ?>
					<time class="comment-meta" pubdate datetime="<?php 
                comment_time('c');
                ?>
">
							<?php 
                echo get_comment_time();
                ?>
							<?php 
                echo get_comment_date();
                ?>
 &colon; 
					</time><br>

					<?php 
                if ($comment->comment_approved == '0') {
//.........这里部分代码省略.........
开发者ID:apennell,项目名称:static_portfolio,代码行数:101,代码来源:template-tags.php


示例18: novusopress_comment

 function novusopress_comment($comment, $args, $depth)
 {
     $tab = '    ';
     $indent = $depth == 1 ? 5 + $depth : 4 + $depth * 2;
     $output = [];
     switch ($comment->comment_type) {
         case 'pingback':
         case 'trackback':
             $output[] = sprintf('%s<li id="li-comment-%s" class="post pingback">%s', str_repeat($tab, $indent), get_comment_ID(), PHP_EOL);
             $output[] = sprintf('%s<p>%s: %s', str_repeat($tab, $indent + 1), __('Pingback', 'novusopress'), get_comment_author_link());
             if (current_user_can('edit_comment', $comment->comment_ID)) {
                 $output[] = sprintf(' <span class="edit-link"><a href="%s">%s</a></span>', get_edit_comment_link(), __('Edit', 'novusopress'));
             }
             $output[] = sprintf('</p>%s', PHP_EOL);
             break;
         default:
             $output[] = sprintf('%s<li id="li-comment-%s" class="%s">%s', str_repeat($tab, $indent), get_comment_ID(), implode(' ', get_comment_class()), PHP_EOL);
             $output[] = sprintf('%s<div id="comment-%s" class="comment-body">%s', str_repeat($tab, $indent + 1), get_comment_ID(), PHP_EOL);
             $output[] = sprintf('%s<footer class="comment-meta">%s', str_repeat($tab, $indent + 2), PHP_EOL);
             $output[] = sprintf('%s<div class="comment-author vcard pad-bottom clearfix">%s', str_repeat($tab, $indent + 3), PHP_EOL);
             if (current_user_can('edit_comment', $comment->comment_ID)) {
                 $output[] = str_repeat($tab, $indent + 4);
                 $output[] = sprintf('<span class="edit-link"><a href="%s" class="btn btn-xs btn-default align-right">%s</a></span>', get_edit_comment_link(), __('Edit', 'novusopress'));
                 $output[] = PHP_EOL;
             }
             $size = 64;
             if ('0' != $comment->comment_parent) {
                 $size = 38;
             }
             $output[] = str_repeat($tab, $indent + 4);
             $output[] = '<div class="thumbnail inline-box align-left">';
             $output[] = get_avatar($comment, $size);
             $output[] = '</div>';
             $output[] = PHP_EOL;
             $output[] = str_repeat($tab, $indent + 4);
             $output[] = sprintf(__('%1$s on %2$s', 'novusopress'), sprintf('<span class="fn">%s</span>', get_comment_author_link()), sprintf('<a href="%1$s" class="comment-datetime"><time 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', 'novusopress'), get_comment_date(), get_comment_time())));
             $output[] = PHP_EOL;
             $output[] = sprintf('%s</div><!-- .comment-author -->%s', str_repeat($tab, $indent + 3), PHP_EOL);
             if ($comment->comment_approved == '0') {
                 $output[] = PHP_EOL;
                 $output[] = str_repeat($tab, $indent + 3);
                 $output[] = sprintf('<div class="alert alert-info comment-awaiting-moderation">%s</div>', __('Your comment is awaiting moderation', 'novusopress'));
             }
             $output[] = sprintf('%s</footer><!-- .comment-meta -->%s', str_repeat($tab, $indent + 2), PHP_EOL);
             $output[] = str_repeat($tab, $indent + 2);
             $output[] = '<div class="comment-content">';
             $output[] = PHP_EOL;
             $output[] = str_repeat($tab, $indent + 3);
             ob_start();
             comment_text();
             $output[] = ob_get_clean();
             $output[] = str_repeat($tab, $indent + 2);
             $output[] = '</div>';
             $output[] = PHP_EOL;
             $output[] = str_repeat($tab, $indent + 2);
             $output[] = '<div class="reply">';
             $output[] = PHP_EOL;
             $output[] = str_repeat($tab, $indent + 3);
             $output[] = get_comment_reply_link(array_merge($args, ['reply_text' => __('Reply &darr;', 'novusopress'), 'depth' => $depth, 'max_depth' => $args['max_depth']]));
             $output[] = PHP_EOL;
             $output[] = str_repeat($tab, $indent + 2);
             $output[] = '</div>';
             $output[] = PHP_EOL;
             $output[] = sprintf('%s</div><!-- #comment-%s -->%s', str_repeat($tab, $indent + 1), get_comment_ID(), PHP_EOL);
             break;
     }
     if ($args['has_children'] && (int) $args['max_depth'] > $depth) {
         $output[] = str_repeat($tab, $indent + 1);
     }
     $output = apply_filters('novusopress_comment_output', implode('', $output));
     echo $output;
 }
开发者ID:novuso,项目名称:novusopress,代码行数:72,代码来源:comments.php


示例19: nextgen_comment

    function nextgen_comment($comment, $args, $depth)
    {
        $GLOBALS['comment'] = $comment;
        switch ($comment->comment_type) {
            case 'pingback':
            case 'trackback':
                break;
            default:
                // Proceed with normal comments.
                global $post;
                $class = 'nggpl-' . implode(' nggpl-', get_comment_class());
                ?>
                <li class="<?php 
                echo $class;
                ?>
" id="nggpl-li-comment-<?php 
                comment_ID();
                ?>
">
                    <article id="nggpl-comment-<?php 
                comment_ID();
                ?>
" class="nggpl-comment">
                        <div class="nggpl-comment-meta nggpl-comment-author nggpl-vcard">
                            <?php 
                printf('<cite>%1$s</cite>', get_comment_author_link());
                ?>
                            |
                            <?php 
                printf('<time datetime="%1$s">%2$s</time>', get_comment_time('c'), sprintf(__('%1$s'), get_comment_date('F jS, Y')));
                ?>
                            <?php 
                if ($depth <= $args['max_depth']) {
                    ?>
                                |
                                <span class="nggpl-reply">
                                <a href='javascript:void(0)'
                                   class='nggpl-reply-to-comment'
                                   data-comment-id='<?php 
                    comment_ID();
                    ?>
'
                                   data-user-name='<?php 
                    echo get_comment_author();
                    ?>
'>
                                    <?php 
                    print __('Reply');
                    ?>
                                </a>
                            </span>
                            <?php 
                }
                ?>
                        </div>
                        <section class="nggpl-comment-content nggpl-comment">
                            <?php 
                echo get_avatar($comment, 40);
                ?>
                            <?php 
                comment_text();
                ?>

                            <?php 
                if ('0' == $comment->comment_approved) {
                    ?>
                                <p class="nggpl-comment-awaiting-moderation">
                                    <?php 
                    _e('Your comment is awaiting moderation.');
                    ?>
                                </p>
                            <?php 
                }
                ?>
                        </section>
                    </article>
                </li>
                <?php 
                break;
        }
    }
开发者ID:CodeNoEvil,项目名称:mbp_web_infrastructure,代码行数:81,代码来源:comments.php


示例20: hybrid_get_comment_class

/**
 * @since      1.6.0
 * @deprecated 2.0.0
 */
function hybrid_get_comment_class($class = '')
{
    _deprecated_function(__FUNCTION__, '2.0.0', 'get_comment_class');
    return get_comment_class($class);
}
开发者ID:Jessphung,项目名称:Phungtastic,代码行数:9,代码来源:deprecated.php



注:本文中的get_comment_class函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP get_comment_count函数代码示例发布时间:2022-05-15
下一篇:
PHP get_comment_author_url_link函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap