sql >> Database teknologi >  >> RDS >> Mysql

Hvordan får man Woocommerce Variation ID?

Prøv denne:

$args = array(
    'post_type'     => 'product_variation',
    'post_status'   => array( 'private', 'publish' ),
    'numberposts'   => -1,
    'orderby'       => 'menu_order',
    'order'         => 'asc',
    'post_parent'   => get_the_ID() // get parent post-ID
);
$variations = get_posts( $args );

foreach ( $variations as $variation ) {

    // get variation ID
    $variation_ID = $variation->ID;

    // get variations meta
    $product_variation = new WC_Product_Variation( $variation_ID );

    // get variation featured image
    $variation_image = $product_variation->get_image();

    // get variation price
    $variation_price = $product_variation->get_price_html();

    get_post_meta( $variation_ID , '_text_field_date_expire', true );

}

Håber dette vil hjælpe dig. For mere information:



  1. Fejl ved installation af Psychopg2 på MacOS 10.9.5

  2. Sådan opretter du en database fra en skabelon i Access 2016

  3. Konverter en kompleks SQL-forespørgsel til SQLAlchemy

  4. Hvordan tilføjer jeg streng med automatisk stigningsværdi i SQL Server?