You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used but code not working
$args['meta_query'] = array(
'relation' => 'AND',
array(
'key' => 'listing_options_types',
'value' => $cat,
'compare' => 'LIKE', // or =
),
);
The text was updated successfully, but these errors were encountered:
$prefix = 'listing_options_';
CSF::createMetabox($prefix, array(
'title' => 'Options',
'post_type' => 'featured-listings',
'data_type' => 'serialize'
));
CSF::createSection($prefix, array(
'fields' => array(
array(
'id' => $prefix . 'types',
'type' => 'select',
'title' => 'Types',
'placeholder' => 'Select an option',
'options' => array(
'residential' => 'residential',
'land' => 'Land',
'lease' => 'Lease',
),
'default' => 'residential'
),
)
));
I used but code not working
$args['meta_query'] = array(
'relation' => 'AND',
array(
'key' => 'listing_options_types',
'value' => $cat,
'compare' => 'LIKE', // or =
),
);
The text was updated successfully, but these errors were encountered: