List latest post for each tag with a category

I think I’ve cracked it. So now the latest post for each tag type is now displayed. A bit beyond my coding level but its working. <?php $args = array( ‘type’ => ‘post’, ‘orderby’ => ‘post_date’); $tags = get_tags($args); foreach($tags as $tag) { $the_query = new WP_Query( ‘tag=’.$tag->slug ); if ( $the_query->have_posts() ) { $the_query->the_post(); … Read more

Update value inside array update_post_meta

The structure of the array you’ve provided suggests that you’re trying to access an incorrect level of the array. Try to replace: $t[0][“_give_amount”] = 25.00; $t[1][“_give_amount”] = 65.00; $t[2][“_give_amount”] = 100.00; $t[3][“_give_amount”] = 250.00; $t[4][“_give_amount”] = 650.00; with: $t[0][0][“_give_amount”] = 25.00; $t[0][1][“_give_amount”] = 65.00; $t[0][2][“_give_amount”] = 100.00; $t[0][3][“_give_amount”] = 250.00; $t[0][4][“_give_amount”] = 650.00;