Skip to content

Instantly share code, notes, and snippets.

@harisrozak
Last active November 7, 2016 10:34
Show Gist options
  • Save harisrozak/e506e682592a357605109322c59b7f80 to your computer and use it in GitHub Desktop.
Save harisrozak/e506e682592a357605109322c59b7f80 to your computer and use it in GitHub Desktop.
Meta query for meta value serialized array
<?php
$args['meta_query'] = array(
array(
'key' => 'array_terms_id',
'value' => sprintf(':"%s";', $term->term_id),
'compare' => 'LIKE'
)
);
// OR:
$args['meta_query'] = array(
array(
'key' => 'array_terms_id',
'value' => serialize(strval($term->term_id)),
'compare' => 'LIKE'
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment