Thanks to the help of @JacobPeattie the problem was how the data was being saved. So instead of:
if(isset($_POST['assign-classes'])) {
update_post_meta( $post->ID, 'assign-classes', $_POST['assign-classes'] );
}
It is now:
delete_post_meta($post->ID, "assign-classes");
for($i = 0; $i < count($_POST['assign-classes-all']); $i++){
add_post_meta( $post->ID, 'assign-classes', $_POST['assign-classes-all'][$i], false );
}
Only thing that was weird is that at first I tried a foreach
loop which would not iterate more than one time. However, a for
loop would.
Related Posts:
- Using meta_query, how can i filter by a custom field and order by another one?
- Mixing regular and custom post types (with meta_query) on home page
- Get posts based on meta key/value
- How to create a wp_query that contains both meta_query and tax_query
- WP_Query() show posts that end later than today
- WP_Query orderby custom field then post_date in one query
- Filtering a WP_Query meta_query by numeric values isn’t working
- Ordering posts having multiple post-meta date fields
- Querying custom post type with 2 custom fields (date-range)
- How Can I save multiple records in same meta key?
- Order Posts by Taxonomy and Meta Value
- filter search result with custom post type meta key
- I can’t set meta_key in my custom post type query
- Meta Query “IN” doesn’t work with ACF checkbox filter
- Using Query Posts With Multiple Post Types And A Taxonomy
- Can’t sort order of wp_query with 2 meta keys
- Comparing timestamps in meta query doesn’t work
- Display two post types ordered by two custom fields
- query order by date on custom type: wrong order
- Used with meta_query in query_posts works slowly
- exclude custom post type by meta key in wp_query
- How loop through posts based on custom fields
- Custom query variable – get wordpress to redirect to nice permalink url
- Filter posts with meta_query NOT IN where value has multiple values
- Displaying Metabox value (custom post type taxonomy)
- Display custom post type taxonomy and month
- CPT Meta Searching
- Filtering by Post Meta Custom Fields – Performance
- Ignore sticky posts if post is not in meta query
- Is it possible to apply a meta_query to one specific post type in a query with multilple post types?
- Query that joins the postmeta table twice
- advanced search forms with 3 input text and that the main problem 3 input text
- Pull a post based on a meta value in a custom post type
- Setting proper query for multiple custom admin filters
- Sorting Custom Post Type by Meta Value but wont display when set to 0
- How to alter WP-JSON main query or best practise for custom endpoints
- Returning a list of custom post types excluding those without a specific meta_value
- Two near-identical custom field types – one works, the other doesn’t . What can cause this?
- wp_query check if integer exists in custom field’s array
- Get posts between custom dates
- filter custom post type by meta key in dashboard
- How to filter wp_list_categories output with some custom post type meta query?
- Display a CPT based on a metabox selection
- A method for ordering mixed dates in search result loop (theory only, no actual code)
- How to do WP_Query with two meta fields with orderby clause
- Stuck in Order by more then one
- Meta Query Not Returning Output Despite Having Matching Values
- Meta Query Filtering not working on Custom Meta Box using Radio Buttons
- WP Meta query for a custom post type based on two values
- Why is this query not working? (Standard posts + custom post type)
- Using meta_query and tax_query at the same time
- Admin Custom Meta Box – Pull Last 5 Posts from Custom Post Type
- Ordering custom post type by multiple custom fields
- How to Output which matched meta_keys were found from custom_type_posts?
- filter search custom field query
- How to let users choose where to search for posts?
- Query based on custom fields start and end date
- Getting a custom post’s custom field based on another custom post’s custom field select
- Get category if used in a custom post type
- Custom Query: If One Post Object Field Value Is The Same As Another
- Query for post and costom post_type in same category filtered by meta for post_type
- If meta_value of meta_key is less than today’s date update meta key
- fetch custom post by meta key if key value is does not know
- Query Posts, order by meta value
- WordPress giving a 404 page when passing a year argument different than the current year
- Two queries – one with checkbox ticked, one without – comparing meta_query
- Order admin post list table by meta field, and have posts without the meta field always be at the end of the list
- Dynamic template page calling shared taxonomies CPT or Plugin post type : how to clone taxonomy for plugin + set up dynamic shortcode
- Using OR relation in meta_query to check for a value before sorting by another
- Filter result of Custom Post Type using meta_query with ACF
- Query posts by current ACF meta key value on single page as related posts
- Orderby if between two meta fields
- How to select meta key in custom database query
- Show posts from WP Custom Post Type selected from a field in a metabox
- ACF meta_key and meta_value break loop
- meta query multiple values for the same key
- Sort custom post archives by a meta value from a different custom post type?
- Custom post types – meta_query: search lesson which starts sooner
- post type => ‘any’ not applied my custom queries
- How to get the posts that my following users are liked?
- Sort loop by custom field from different post type
- Meta_query by date for Events archive
- How to shows CPT which has specific meta key?
- Querying, storing, and using data from 2 separate custom post types
- meta query always fails even if data is correct
- Events with multiple event dates + permalink for each date
- Selecting posts older than the current Unix epoch timestamp
- Filter RSS feed for custom post type to events for next 7 days only
- Custom Query With Multiple Meta Key Value
- Trying to combine multiple WordPress queries
- using post_type with meta_query
- WP_Query arguments: Loop through custom post type – get all entries except excluded meta_key?
- loop through custom post-type with two meta_keys
- Querying meta values within an array
- Custom Post Type + Custom Meta Query Not Showing 2012 Posts
- add_filter > posts_where works partially
- Get Posts ordered by a date custom meta field
- Check for custom field value in different post type than current one and do something
- Order Wp Query by earliest of 3 dates meta query
- Function to Compare CPT Post Custom Value with Default Posts CF Value