Image Display
-
Hello ,
I want to display products image along with title
so this is my code…
$products = $wpdb->get_results(“select *from wp_posts);
$product = get_product( get_the_ID() );
$produc = wc_get_product( $product );
foreach($products as $prod)
{
echo $prod->post_title;
echo $prod->get_image();
}
Thanks in advance
Prakash
The topic ‘Image Display’ is closed to new replies.