I have a custom_meta for each post, named 'project_cost'.
Is there anyway to loop through all posts and sum the value of all the 'project_cost' ?
Example
Post#1 -> 'project_cost' = $100.00
Post#2 -> 'project_cost' = $200.00
Post#3 -> 'project_cost' = $150.00
and so on...
I want to get the total for all the 'project_cost' values combined, which in this case should be $450.00
Thank you in advance.