当前位置: 首页>>代码示例>>PHP>>正文


PHP STReview::check_like方法代码示例

本文整理汇总了PHP中STReview::check_like方法的典型用法代码示例。如果您正苦于以下问题:PHP STReview::check_like方法的具体用法?PHP STReview::check_like怎么用?PHP STReview::check_like使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在STReview的用法示例。


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

示例1: STReview

    $count_like = get_comment_meta($comment_id, '_comment_like_count', true);
    if (intval($count_like) <= 0) {
        $count_like = 0;
    }
    ?>
                    <b class="text-color"> <span class="number"><?php 
    echo $count_like;
    ?>
</span> <?php 
    echo __('like this', ST_TEXTDOMAIN);
    ?>
</b>
                    
                    <?php 
    $review_obj = new STReview();
    if ($review_obj->check_like($comment_id)) {
        ?>
                            <a data-id="<?php 
        echo esc_attr($comment_id);
        ?>
" class="st-like-review fa fa-thumbs-o-down box-icon-inline round" href="#"></a>

                        <?php 
    } else {
        ?>

                            <a data-id="<?php 
        echo esc_attr($comment_id);
        ?>
" class="st-like-review fa fa-thumbs-o-up box-icon-inline round" href="#"></a></b>
                        <?php 
开发者ID:DaddyFool,项目名称:travelTest,代码行数:31,代码来源:review-list.php

示例2: array

            <span class="comment-time">

                <?php 
    echo human_time_diff(get_comment_time('U'), current_time('timestamp')) . st_get_language('_ago');
    ?>
             </span>
            <span class="comment-reply"><i class="fa fa-reply"></i>
                <?php 
    comment_reply_link(array_merge($args, array('add_below' => 'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth'])));
    ?>
            </span>
           <!-- <a class="comment-like" href="#"><i class="fa fa-heart"></i> 23</a>-->
            <p class="comment-like">
                <?php 
    $review_obj = new STReview();
    if ($review_obj->check_like(get_comment_ID())) {
        ?>
                    <a class="comment-like st-like-comment fa fa-heart" data-id="<?php 
        comment_ID();
        ?>
" href="#"><i class=""></i> <?php 
        echo get_comment_meta(get_comment_ID(), '_comment_like_count', true);
        ?>
</a>
                    <!-- <a data-id="<?php 
        /*comment_ID(); */
        ?>
" class="st-like-review fa fa-thumbs-o-down box-icon-inline round" href="#"></a><b class="text-color"> <?php 
        /*echo get_comment_meta($comment_id,'_comment_like_count',true) */
        ?>
</b>
开发者ID:DaddyFool,项目名称:travelTest,代码行数:31,代码来源:comment-list.php


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