It looks like you're new here. If you want to get involved, click one of these buttons!
'filters' => array(
'language_equal' => array(
'default' => 'uk',
'label' => 'Lang:',
'type' => 'select',
'options' =>
array(
'uk' => 'Uk',
'ru' => 'Ru',
'de' => 'De',
'' => 'All'
),
),
'published_equal' => array(
'default' => 'yes',
'label' => 'Published',
'type' => 'select',
'options' =>
array(
'yes' => 'Yes',
'no' => 'No'
),
),
)
Comments
public $filter_join = "and";
cool, tnx!