Skip to content

Instantly share code, notes, and snippets.

@csaborio001
Created December 10, 2019 12:07
Show Gist options
  • Save csaborio001/952a4d0888084162389d88ace6cbd948 to your computer and use it in GitHub Desktop.
Save csaborio001/952a4d0888084162389d88ace6cbd948 to your computer and use it in GitHub Desktop.
$filter_array = array(
"id" => "participant_filter",
"style" => "button",
"button_text" => "Filter Results",
"filters" => array(
array(
"key" => "meta",
"field_type" => "radio",
"meta_key" => "smoker",
"meta_operator" => "IN",
"meta_type" => "CHAR",
"values" => array(
array(
"label" => "Yes",
"value" => "yes"
),
array(
"label" => "No",
"value" => "no"
)
),
"title" => "Smoker"
)
)
);
echo alm_filters($filter_array, '2510044691');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment