// retrieve all meta_values with key 'state' from database
$state_posts = $wpdb->get_results("
SELECT meta_value FROM ".
$wpdb->prefix."postmeta
WHERE meta_key = 'state'
ORDER BY meta_value ASC",
ARRAY_A
);
// define counting array
$state_count = array();
// iterate through meta_values, count the occurence of each state
foreach ( $state_posts as $state_post ) {
if ( isset ( $state_count[$state_post['meta_value']] ) ) {
$state_count[$state_post['meta_value']] = $state_count[$state_post['meta_value']] + 1;
} else {
$state_count[$state_post['meta_value']] = 1;
}
}
// echo results
echo '<ul>';
foreach ( $state_count as $state => $count ) {
echo '<li>' . $state . ': ' . $count . ' posts</li>';
}
echo '</ul>';
Related Posts:
- How to add a custom field in the advanced menu properties?
- Sortable Custom Columns in User Panel (users.php)?
- Importing data for advanced custom fields plugin?
- Gutenberg add a custom metabox to default blocks
- How to rename a custom field?
- Filter post listing by meta value which is a date
- Extra profile field as select box?
- Adding Custom Field to Taxonomy Input :Panel
- How to activate “custom fields” section in WP3
- How to filter or search the posts using postmeta tables custom meta fields with wordpress REST API
- Add meta data to the menu
- Custom bulk action for media gallery items
- Copy SEO Meta Desc “Custom Field” to Excerpt field?
- Custom fields won’t display on my blog page
- How to customize default wordpress editor?
- Order Custom post type loop by custom field (datepicker)
- Localized Date Format for Custom Field
- Add an advert every nth Paragraph
- Check if the value of a field has changed on save_post
- How to edit multiple post with Custom fields
- Undefined index error when saving content on metabox
- Saving custom image meta fields
- How to update custom user meta field in wp?
- Query post order by post and desc not working
- If category then echo a custom fields
- How can I show custom fields in the loop only to specific user roles?
- Add conditional custom option to ‘Display name publicly as’ dropdown
- Custom fields not getting saved in the databse when added to the add new user profile page
- Show 1 post and after a specific date show the next one
- Sort custom field by post
- How to order posts by one custom field and filter them by another one?
- Can we create a WordPress read-only virtual field derived from three other fields?
- How to create a gallery custom field for WordPress post?
- How to display image inside container of custom made widget
- List users by sum of all their posts’ custom field values
- Custom Metabox additional item
- Duplicate (or more) custom fields on many posts. Is there an easy way to clean them up?
- How to add new field to the account address?
- Split the_title
- Sort WP_Query with numeric custom field
- Display Multiple Values of Same Key
- How to Wrote Simple Calculations by Using Custom Fields in Loop?
- Custom Query based on custom field of a single post
- How can I use custom properties to set different background on different pages?
- change order of images attached to post
- Loop through incrementing custom fields
- Enable a short code in the custom meta field
- tax query between operator like
- The conditional logic only works to show or hide?
- Single page WordPress website – custom fields or meta boxes or something else?
- Collect Data from NEXT item while in loop
- Order custom fields alphabetically
- Custom product fields in wp e-Commerce plugin [closed]
- How to query for posts with either one or another custom field
- How show post only from after custom date
- How to add extra field in admin comment section
- wordpress multi user question
- How to sort post listing on a page using custom field value?
- Odd functions.php issue in WordPress
- Filter or order based on custom field
- How to set up page fields with gutenberg instead of ACF
- ACF multi taxonomy on filterable gallery
- How to improve my non-unique metadata MySQL entries?
- How to use ACF with javascript to update custom field values?
- Custom user registration fields in user_register hook
- Unable to change checkout placeholder text
- Store comment form custom field in custom database
- Custom Fields Not Showing (ACF not installed)
- Show Custom field value instead of title in WP Menu
- How do I update custom field post meta in frontend post template?
- Sorting post by custom fileds date
- Query multiple meta values at the same time :
- How to Find List of Available Custom Fields for Theme?
- get wordpress post loop by meta box date
- Sort posts by custom fields with empty values
- Custom Fields Not Working In Footer
- Sub Field of File Field
- ACF plugin and field update
- Automatically set the_post_thumbnail to Custom Field Value
- Add custom field to post with some part of url as value
- Adding custom fields to images
- How to save dynamically generated value in post type?
- CSS conditional on custom field value
- My meta boxes update wp_postmeta of posts but not of pages. What is wrong with the code?
- how to show this part only in the single post page?
- same custom field for single posts
- Import data from arbitrary CSV to WPAlchemy meta fields
- Post thumbnail size for custom field only
- Display meta data from a custom field within plugin Category Grid View Gallery
- Checking if field is set before comparing with meta_query in query_posts?
- Calling a custom profile field only it it exists
- Alter SQL query to return posts with unique custom field value, no duplicate values
- custom field output after the_content
- Insert shortcode before and after a list automatically
- Only show content slideshow if “slideshow” custom field exists
- If post custom meta data is not set, show normal state
- Sort posts after filtering them through multiple taxonomies
- Media Custom Fields – get a value with PHP
- How to add google map to custom field
- jaredatch metaboxes on video post formats