WordPress教程

给WordPress分类\标签页面增加点赞功能

阿里云

首先说明 WordPress AJAX 给 WordPress 主题分类\标签页面增加点赞功能或者是 WordPress 文章点赞都会给数据库增加表,自 WordPress 4.4 新增了 Term meta,意味着可以像文章点赞一样来实现分类\标签页面增加点赞功能,wordpress 当前把下面的代码加入到 functions.php:

  1. function wp_term_like( $preifx = null){
  2.     global $wp_query;
  3.     if(!is_tax() && !is_category() && !is_tag()) return ;
  4.     $tax = $wp_query->get_queried_object();
  5.     $id = $tax->term_id;
  6.     $num = get_term_meta($id,'_term_like',true) ? get_term_meta($id,'_term_like',true) : 0;
  7.     $active = isset($_COOKIE['_term_like_'.$id]) ? ' is-active' : '';
  8.     $output = '<button class="button termlike' . $active . '" data-action="termlike" data-action-id="' . $id . '">' . $prefix . '<span class="count">' . $num . '</span></button>';
  9.     echo $output;
  10. }
  11.  
  12. add_action('wp_ajax_nopriv_termlike','wp_term_like_callback');
  13. add_action('wp_ajax_termlike','wp_term_like_callback');
  14. function wp_term_like_callback(){
  15.     $id = $_POST['actionId'];
  16.     $num = get_term_meta($id,'_term_like',true) ? get_term_meta($id,'_term_like',true) : 0;
  17.     $domain = ($_SERVER['HTTP_HOST'] != 'localhost') ? $_SERVER['HTTP_HOST'] : false; // make cookies work with localhost
  18.     setcookie('_term_like_'.$id,$id,$expire,'/',$domain,false);
  19.     update_term_meta($id,'_term_like',$num + 1);
  20.     echo json_encode(array(
  21.         'status'=>200,
  22.         'data'=> $num + 1,
  23.         ));
  24.     die;
  25. }
也想出现在这里?联系我们
创客主机

AJAX js 代码加入的你的 js 文件中,注意 admin-ajax.php 的路径!

  1. jQuery(document).on("click", ".termlike", function() {
  2.     var _self = jQuery(this);
  3.     if (_self.hasClass('is-active')) {
  4.         alert('您已经赞过啦')
  5.     } else {
  6.         _self.addClass('is-active');
  7.         jQuery.ajax({
  8.             url: /wp-admin/admin-ajax.php,//注意你的该文件路径
  9.             data: _self.data(),
  10.             type: 'POST',
  11.             dataType: "json",
  12.             success: function(data) {
  13.                 if (data.status === 200) {
  14.                     _self.find('.count').html(data.data)
  15.                 } else {
  16.                     alert('服务器正在努力找回自我')
  17.                 }
  18.             }
  19.         })
  20.     }
  21. });

完成以上所有的操作以后,我们开始讲 WordPress 分类/标签页面点赞调用方法:

  1. <?php wp_term_like();?>

在对应归档页面使用下面代码,如在其他地方调用则不会有任何输出。

给 WordPress 分类\标签页面增加点赞功能

已有 501 人购买
查看演示升级 VIP立刻购买

收藏
(16)

发表回复

热销模板

Ashade - 作品展示摄影相册WordPress汉化主题
LensNews

本站承接 WordPress / PbootCMS / DedeCMS 等
系统建站、仿站、开发、定制等业务!