“WP PHP Get Product Attributname ohne PA” Code-Antworten

WP PHP GET Produktelement Attribute Name

$args = array(
    'category'  => array( 'category_slug' )
    // or 'term_taxonomy_id' => 4 i.e. category ID
);

foreach( wc_get_products($args) as $product ){

    foreach( $product->get_attributes() as $attr_name => $attr ){

        echo wc_attribute_label( $attr_name ); // attr label
        // or get_taxonomy( $attr_name )->labels->singular_name;

        foreach( $attr->get_terms() as $term ){

            echo $term->name;
        }
    }
}
Weary Wildebeest

WP PHP Get Product Attributname ohne PA

$taxonomy   = 'pa_size';
$label_name = wc_attribute_label( $taxonomy );
Weary Wildebeest

Ähnliche Antworten wie “WP PHP Get Product Attributname ohne PA”

Fragen ähnlich wie “WP PHP Get Product Attributname ohne PA”

Weitere verwandte Antworten zu “WP PHP Get Product Attributname ohne PA” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen