Skip to content

Tag: wordpress

Limit wp_count_posts to the last 7 days

I want to display the total number of posts within a post type, but limit it to the last 7 days. This is my current code successfully displaying the total amount of posts within the custom post type. <?php $published_posts = wp_count_posts($type = ‘games’)->publish; echo $published_posts;?&g…

place results of each foreach objects into their own columns

I have an array of objects that I am getting values for using foreach: If I ECHO this, I get results like: The mysql is Great! Now since they are objects, if I wanted to get a count on each variation of the type and display that in a table how would I do that? I have tried adding things