This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Display text from Array on Results (ACF Checkbox)

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Display text from Array on Results (ACF Checkbox) Reply To: Display text from Array on Results (ACF Checkbox)

#30323
Ernest MarcinkoErnest Marcinko
Keymaster

Sure, you can pass on up to 4 arguments to that hook, you can find them in the linked documentation.

For example:

add_filter( 'asp_results', 'asp_custom_link_results', 10, 4 );
function asp_custom_link_results( $results, $search_id, $is_ajax, $args ) {
 .....

The $search_id variable holds the ID of the search shortcode.