Created
December 10, 2019 12:07
-
-
Save csaborio001/952a4d0888084162389d88ace6cbd948 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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