Quantcast
Channel: Clan VPS Host » woocommerce
Viewing all articles
Browse latest Browse all 195

How to fetch all the woocommerce products from the database using php

$
0
0

I am trying to fetch all the products of the woocommerce from the database using php.. But it is not giving me the list of all products <select Name='choose'> <?php $args = array( 'post_type' => 'product' ,'posts_per_page' => 100); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); echo '<option selected value="'.the_title().'</option>'; … Continue reading How to fetch all the woocommerce products from the database using php

The post How to fetch all the woocommerce products from the database using php appeared first on Clan VPS Host.


Viewing all articles
Browse latest Browse all 195

Trending Articles