post__in not taking my list of IDs

If $banner_id_list holds comma-delimited list then to convert it to array instead of

array($banner_id_list)

you need to do

explode(',', $banner_id_list)

Leave a Comment