着能不用插件就不用的原则,使用代码方式实现文章点赞功能。通过 ajax 实时显示点赞数量,自定义字段保存点赞数量,Cookies 禁止多次点赞的方式来实现,并且运用 cookies 有效的解决了重复点赞的 bug。

1、将下方代码添加至主题的functions.php文件中。

add_action('wp_ajax_nopriv_bigfa_like', 'bigfa_like');
add_action('wp_ajax_bigfa_like', 'bigfa_like');
function bigfa_like(){
    global $wpdb,$post;
    $id = $_POST["um_id"];
    $action = $_POST["um_action"];
    if ( $action == 'ding'){
    $bigfa_raters = get_post_meta($id,'bigfa_ding',true);
    $expire = time() + 99999999;
    $domain = ($_SERVER['HTTP_HOST'] != 'localhost') ? $_SERVER['HTTP_HOST'] : false; // make cookies work with localhost
    setcookie('bigfa_ding_'.$id,$id,$expire,'/',$domain,false);
    if (!$bigfa_raters || !is_numeric($bigfa_raters)) {
        update_post_meta($id, 'bigfa_ding', 1);
    } 
    else {
            update_post_meta($id, 'bigfa_ding', ($bigfa_raters + 1));
        }

    echo get_post_meta($id,'bigfa_ding',true);

    } 

    die;
}

2、将下方代码添加至主题的footer.php文件中。

注意:这里必须引入jQuery,否则不能使用。可以去官网下载,或者直接使用百度的jquery库也很方便(如下)。

//百度jquery库
<script src="https://libs.baidu.com/jquery/2.0.0/jquery.js"></script>
<script type="text/javascript">
$.fn.postLike = function() {
    if ($(this).hasClass('done')) {
        return false;
    } else {
        $(this).addClass('done');
        var id = $(this).data("id"),
        action = $(this).data('action'),
        rateHolder = $(this).children('.count');
        var ajax_data = {
            action: "bigfa_like",
            um_id: id,
            um_action: action
        };
        $.post("/wp-admin/admin-ajax.php", ajax_data,
        function(data) {
            $(rateHolder).html(data);
        });
        return false;
    }
};
$(document).on("click", ".favorite",
function() {
    $(this).postLike();
});
</script>

3、在文章页面single.php中添加以下代码。加在你需要的位置,一般加在<?php the_content(); ?>这段代码后边。

<a href="javascript:;" rel="external nofollow" target = "_blank"  rel="external nofollow" target = "_blank"  data-action="ding" data-id="<?php the_ID(); ?>" class="favorite<?php if(isset($_COOKIE['bigfa_ding_'.$post->ID])) echo ' done';?>">喜欢 <span class="count">
   <?php if( get_post_meta($post->ID,'bigfa_ding',true) ){            
       echo get_post_meta($post->ID,'bigfa_ding',true);
   } else {
       echo '0';
   }?>
</span>
</a>

4、最后在样式表style.css文件中加入CSS样式即可,如果不喜欢可自己修改样式。

.post-like{
        text-align:center;
        padding:10px;
    }
      .post-like a{ 
        background-color:#21759B;
        border-radius: 3px;
        color: #FFFFFF;
        font-size: 12px;
        padding: 5px 10px;
        text-decoration: none;
        outline:none;
    }
      .post-like a.done, .post-like a:hover{
        background-color:#eee;
        color:#21759B;
    } 
      .post-like a.done{
        cursor:not-allowed;
    }

长风破浪会有时,直挂云帆济沧海。