【发布时间】:2017-10-26 14:45:39
【问题描述】:
对于一个特殊的画廊,我需要展示所有 woocommerce 变体图像。在 woocommerce content-single-product.php 上,我可以访问变体,但无法从中获取图像 url。我该怎么做?
在我的 content-single-product.php 中覆盖:
<?php
$args = array(
'post_type' => 'product_variation',
'post_status' => array( 'private', 'publish' ),
'numberposts' => -1,
'orderby' => 'menu_order',
'order' => 'asc',
'post_parent' => $post->ID
);
$variations = get_posts( $args );
echo "<pre>"; print_r($variations); echo "</pre>";
?>
【问题讨论】:
标签: wordpress woocommerce