Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

Cannot figured it out... I need to count how many posts there are for each taxonomy term form each month.

share|improve this question

1 Answer

One method you might want to research is wp_get_archives http://codex.wordpress.org/Function_Reference/wp_get_archives

You might also be able to use the_date() to sort out posts in a given month. http://codex.wordpress.org/Function_Reference/the_date

I would try to find a function that can store results in an array, and then use count() on the array to learn it's contents...

Good luck!

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.