WC_Product_Data_Store_CPT::get_featured_product_ids PHP Method

    public function get_featured_product_ids()
    {
        return get_posts(array('post_type' => array('product', 'product_variation'), 'posts_per_page' => -1, 'post_status' => 'publish', 'meta_query' => array(array('key' => '_visibility', 'value' => array('catalog', 'visible'), 'compare' => 'IN'), array('key' => '_featured', 'value' => 'yes')), 'fields' => 'id=>parent'));
    }