Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.65K
~143 People Reached
Favorite Forums
Favorite Tags
php x 1

1 Posted Topic

Member Avatar for 68thorby68

[CODE] <?php $sql = "select date(p.post_modified) as post_modified from wp_posts p inner join wp_term_relationships tr on tr.object_id = p.ID inner join wp_terms tt on tt.term_id = tr.term_taxonomy_id where p.post_type='post' and tt.slug='your category slug name' group by date(p.post_modified)" ; $rows = $wpdb->get_results($sql); if($rows){ foreach($rows as $row){ $date = $row->post_modified; $date = …

Member Avatar for james_horn165
0
143

The End.