This is to check if the listing is premium: if ($listing_type == 'pro') How do I check if the listing is "featured on the home page slider" or "featured on the category page slider". (if the check boxes are selected) Thank you.
Hello, Following are the code for featured and category pages: $is_featured_home = get_post_meta($post->ID, 'geocraft_f_checkbox1', true); if($is_featured_home == 'on'){ show one home page } $is_featured_cat = get_post_meta($post->ID, 'geocraft_f_checkbox2', true); if($is_featured_cat == 'on'){ show one category page } Thanks & Regards Gourav Shrivastava