Add up the values of custom fields…
-
I found a resolved topic, here, that does something real close to what I would like to do. But, I would like to restrain this to only posts of a certain category and with certain tag.
Does anyone know how I would limit the following code by category and tag? Right now it is adding up all of the values in the database tables with the custom value field.
<?php $miles = array(); $meta_key = 'abc';//set this to your custom field meta key $miles = $wpdb->get_col($wpdb->prepare("SELECT meta_value FROM $wpdb->postmeta WHERE meta_key = %s", $meta_key)); echo 'Total miles is '.array_sum( $miles ); ?>
- The topic ‘Add up the values of custom fields…’ is closed to new replies.