Erhalten Sie den Woocommerce-Produktpreis anhand der ID
1 Antworten
- Stimmen
-
- 2018-03-08
Mit derfolgenden Funktion können Sieein Produktobjekterstellen:
$product = wc_get_product( $post_id );
Danach können Sie auf alle Produktdaten zugreifen.Alle verfügbaren Methodenfinden Sie hier ,aber Siebenötigen:
$product->get_regular_price(); $product->get_sale_price(); $product->get_price();
You can create a product object using the following function:
$product = wc_get_product( $post_id );
And after that you will be able to access to all product's data. All available methods can be found here, but the ones you need are:
$product->get_regular_price(); $product->get_sale_price(); $product->get_price();
-
dankefür die Antwort.Ich sehe das schon.erneutprüfen.aber dafürmussichmeine Shortcode-Funktion anders ändern.habeich recht?gibt es sowiesoin meinem Shortcode zutunthanks for reply. i look that already. checking again. but for that i need to change my shortcode function different way. am i right ? is there anyway to do inside my shortcode
- 0
- 2018-03-08
- Accore LTD
-
Fügen Sieeinfach `$product=wc_get_product ($post_id);`irgendwo über $price hinzu und setzen Sie `$price=$product->get_price ()`.Just add `$product = wc_get_product( $post_id );` somewhere above $price and set `$price = $product->get_price()`.
- 1
- 2018-03-08
- Boris Kuzmanov
-
Dies stürztemein lokalesThis crashed my local
- 1
- 2018-08-23
- Ashwani Shukla
Ichmacheeinen Shortcode,um Produkttitel,Bild und Preis zuerhalten.Ichbekomme alle Titel,Links und Bilder richtig,abernicht den Preis.aber das Problemist
$price = get_the_price($post_id);
Ich denke,diese Funktionistnicht korrektjede Idee,wiemanjetzt den Preisbekommt.
Danke