// Shortcode für Produktattribute
function woocommerce_product_attributes_shortcode($atts) {
global $product;
// Holt die Attribute des Produkts
$attributes = $product->get_attributes();
$output = '';
if (!empty($attributes)) {
$output .= '
';
foreach ($attributes as $attribute) {
if ($attribute->get_variation() || $attribute->get_visible()) {
$output .= '
';
$output .= '' . wc_attribute_label($attribute->get_name()) . ': ';
$output .= $attribute->get_options()[0];
$output .= '
';
}
}
$output .= '
';
}
return $output;
}
// Registriere den Shortcode
add_shortcode('product_attributes', 'woocommerce_product_attributes_shortcode');
XML-RPC server accepts POST requests only.