Wordpress 过滤器 post by product_cat
Wordpress Filter post by product_cat
我在按产品类别过滤帖子(产品)时遇到问题。试了好几种方法,我是菜鸟
在我的存档产品模板上,我使用以下查询来执行报告(通过 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');
您能否帮助我如何构建我的查询以包含分类法并将帖子限制为具有给定产品类别的帖子?
我知道我需要包括分类法和术语,但无法弄清楚。
非常感谢。
您需要进行 2 处更改:
- 内部加入帖子 table(
xi00_3_posts
) 评论 table (xi00_3_comments
).
- 内部加入帖子 table(
xi00_3_posts
) 到术语关系 table (xi00_3_term_relationships
),用于类别选择。
注意 我在下面的例子中使用 10
作为 term_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
我在按产品类别过滤帖子(产品)时遇到问题。试了好几种方法,我是菜鸟
在我的存档产品模板上,我使用以下查询来执行报告(通过 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');
您能否帮助我如何构建我的查询以包含分类法并将帖子限制为具有给定产品类别的帖子? 我知道我需要包括分类法和术语,但无法弄清楚。
非常感谢。
您需要进行 2 处更改:
- 内部加入帖子 table(
xi00_3_posts
) 评论 table (xi00_3_comments
). - 内部加入帖子 table(
xi00_3_posts
) 到术语关系 table (xi00_3_term_relationships
),用于类别选择。
注意 我在下面的例子中使用 10
作为 term_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