1

我无法按产品类别过滤帖子(产品)。尝试了几种方法,我是新手。

在我的存档产品模板上,我使用以下查询来执行报告(通过 SQLREPORTS 插件):

SELECT `post_title` AS Alumno, `comment_author` AS 'Profesor',  `comment_date`  AS 'Fecha', `comment_content` AS 'Nota' 
FROM `xi00_3_comments` 
INNER JOIN `xi00_3_posts` ON `comment_post_ID`=`ID` 
WHERE `comment_author` != 'WooCommerce'
AND DATE(comment_date) BETWEEN DATE_ADD(DATE_ADD(NOW(),INTERVAL -1 MONTH), INTERVAL 0 DAY) AND DATE(NOW())
AND comment_approved = '1'
ORDER BY `xi00_3_comments`.`comment_date` DESC 

它运行得很好,我得到了所有帖子的所有评论。(我的页面现在按产品类别过滤)。

我设法获得了当前类别的价值:(比如价值'3b')

   [query_vars] => Array
    (
        [product_cat] => 3b

$category =  get_query_var('product_cat','msg if not set');

您能否帮助我如何构建我的查询以包括分类并将帖子限制为具有给定产品类别的那些?我知道我需要包括分类法和术语,但无法弄清楚。

太感谢了。

4

1 回答 1

1

您需要进行 2 处更改:

  1. 内连接将表 ( xi00_3_posts) 发布到评论表 ( xi00_3_comments)。
  2. Inner Join 将表 ( xi00_3_posts) 发布到术语关系表 ( xi00_3_term_relationships),用于类别选择。

注意我在下面的例子中使用10term_taxonomy_id

SELECT `post_title` AS Alumno, `comment_author` AS 'Profesor',  `comment_date`  AS 'Fecha', `comment_content` AS 'Nota'  FROM `xi00_3_posts`  INNER JOIN `xi00_3_comments` ON `ID`=`comment_post_ID` INNER JOIN `xi00_3_term_relationships` ON (`ID` = `object_id`)  WHERE `comment_author` != 'WooCommerce'  AND ( `term_taxonomy_id` IN (10) )  AND DATE(comment_date) BETWEEN DATE_ADD(DATE_ADD(NOW(),INTERVAL -1 MONTH), INTERVAL 0 DAY) AND DATE(NOW()) AND comment_approved = '1' ORDER BY `xi00_3_comments`.`comment_date` DESC
于 2016-12-07T06:25:38.723 回答