SQL从数据库中获取Woocommerce产品缩略图

时间:2019-07-13 13:20:40

标签: php mysql database wordpress woocommerce

过去两天我一直在搜索以发现Woocommerce产品缩略图(图像)文本和URL到底可以存储在数据库表中的什么位置,但仍然无法弄清楚!

我处于必须使用SQL查询将产品数据移至另一个表的情况,并且必须从phpmyadmin面板中实现该过程。

我已经搜索了wp_posts和wp_postmeta表,wp_posts包含一个url产品post_type like 'product%'的指南列,到目前为止,我知道post将其thumbalis链接存储在其中一种类型为attachment的帖子中,而我需要post_typeproduct或类似的帖子。

希望我可以在这里找到一些答案,谢谢。

1 个答案:

答案 0 :(得分:0)

您可以使用Wordpress WP_Query获取产品的缩略图。

$args = array(
        'post_type'      => 'product',   //post type of product
        'posts_per_page' => -1
    );

    $query= new WP_Query( $args );

    while ( $query->have_posts() ) : $query->the_post();
        global $product;
      //woocommerce_get_product_thumbnail is use to get the product thumbnail link
        echo '<br /><a href="'.get_permalink().'">' . woocommerce_get_product_thumbnail().' '.get_the_title().'</a>';
    endwhile;

    wp_reset_query();

解决方案2 -使用您在查询中提到的自定义查询。

//Using custom query get the details from wp_postmeta and wp_posts
//_wp_attached_file - meta key for image
$querystr = "SELECT p.*, pm2.meta_value as product_image FROM wp_posts p LEFT JOIN
wp_postmeta pm ON (
pm.post_id = p.id
AND pm.meta_value IS NOT NULL
AND pm.meta_key = '_thumbnail_id'
)
LEFT JOIN wp_postmeta pm2 ON (pm.meta_value = pm2.post_id AND pm2.meta_key = '_wp_attached_file'
AND pm2.meta_value IS NOT NULL) WHERE p.post_status='publish' AND p.post_type='product'
ORDER BY p.post_date DESC";



$upload_dir   = wp_upload_dir();
//get wp_upload url
$wp_upload_url = $upload_dir['baseurl'];
$pageposts = $wpdb->get_results($querystr, OBJECT);
foreach ($pageposts as $post){

        echo "<br /><a href='".$post->guid."'><img src='". $wp_upload_url.'/'.$post->product_image."'>".$post->post_title."</a>";

}