首先,我想说的是,我几乎没有编码经验。我想在商店页面的productbox中显示可用尺寸。我在这附近搜索了几遍后找到了这个。现在,我只想在尺寸可用时显示尺寸。如果没有可用的大小属性,我希望文本:没有可用的大小或根本没有文本。
我现在得到了以下代码:
add_action(\'woocommerce_after_shop_loop_item_title\', \'display_size_attribute\', 5);
function display_size_attribute() {
global $product;
if ($product->is_type(\'external\')) {
$taxonomy = \'pa_maat\';
echo "Maten:";
echo \'<span class="attribute-size">\'
. $product->get_attribute($taxonomy)
. \'</span>\';
}
}