Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The company I work for uses a WordPress system to track "Projects". We want to create some queries that will tell us how many days it has been since anyone commented on projects in specific categories. These would be run outside of the WordPress environment so I can't use any WordPress PHP functions. I was able to write parts of the query I think will be needed but I'm not sure how to combine them and get what is finally needed.

I have a query that will get all posts that are in one category (need to be able to get all posts in a list of categories ie each post returned is in all categories listed)

SELECT 
    DISTINCT `wp_posts`.`ID`
FROM 
    `wp_posts` INNER JOIN
    `wp_term_relationships` ON `wp_posts`.`ID` = `wp_term_relationships`.`object_id` INNER JOIN
    `wp_term_taxonomy` ON `wp_term_relationships`.`term_taxonomy_id` = `wp_term_taxonomy`.`term_taxonomy_id` INNER JOIN
    `wp_terms` ON `wp_term_taxonomy`.`term_id` = `wp_terms`.`term_id`
WHERE 
    `wp_posts`.`post_status` = 'publish' AND
    `wp_posts`.`post_type` = 'post' AND
    `wp_terms`.`name` = 'Open' /*this is one of the category names I would be looking for*/

I also figured out a way to get the last comment for a given post

SELECT 
    `wp_comments`.`comment_ID`, `wp_comments`.`comment_date`
FROM
    `wp_comments` INNER JOIN
    `wp_posts` ON `wp_comments`.`comment_post_ID` = `wp_posts`.`ID`
WHERE
    `wp_comments`.`comment_approved` = 1 AND
    `wp_posts`.`ID` = 275
ORDER BY
    `wp_comments`.`comment_date` DESC
LIMIT 1

An example of categories that I would be looking for would be ('Office 1' , 'Group 1', 'Open')

If anyone could help me modify and combine these queries to get what I need or suggest an alternative method that would be great.

Thanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.