Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › List only publishers items › Reply To: List only publishers items
March 1, 2022 at 12:46 pm
#36953
Keymaster
Hi Majid,
Based on your description, I recommend trying this custom code:
add_filter( 'asp_results', 'asp_hide_by_status', 10, 2 );
function asp_hide_by_status( $results, $search_id ) {
foreach ($results as $k=>$r) {
if ( isset($r->post_type) ) {
if ( $search_id == 1 && get_post_status($r->id) != 'publish' ) {
unset($results[$k]);
}
}
}
return $results;
}