-
Notifications
You must be signed in to change notification settings - Fork 102
Open
Description
$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 =
),
);
Metadata
Metadata
Assignees
Labels
No labels