Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › How to exclude certain media files from the search? › Reply To: How to exclude certain media files from the search?
June 21, 2023 at 10:04 am
#44408
Keymaster
I finally had a chance to test, this is the one:
add_filter("asp_query_args", "asp_query_args_change", 10, 2);
function asp_query_args_change($args, $search_id) {
global $wpdb;
if ( $search_id == 1 ) {
$include_ids = array(1954, 1955, 1956, 1957, 1958); // Media file IDS to include
// No change below
$ids = implode(', ', $include_ids);
$args['attachment_query']['where'] = "AND $wpdb->posts.ID IN($ids)";
$args['post_in'] = $include_ids;
}
return $args;
}