Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Di mana kunci dan nilai atribut produk WooCommerce disimpan

Ternyata mereka disimpan di bidang serial.

$attribute_name  = 'my-attribute';
$attribute_value = 'cupcakes';

$serialized_value = serialize( 'name' ) . serialize( $attribute_name ) . serialize( 'value' ) . serialize( $attribute_value ); 
$args = array(
    'post_type'      => 'product',
    'post_status'    => 'any',
    'posts_per_page' => -1,
    'orderby'        => 'title',
    'order'          => 'ASC',
    'meta_query' => array(
        array(
            'key'     => '_product_attributes',
            'value'   => $serialized_value,
            'compare' => 'LIKE',
        ),
    ),
);

$query = new WP_Query( $args );
$products = $query->get_posts();
//neat little array of product objects (not the full product object, 
//just data that came from query. Can use wordpress loop on $query or
//wc_get_product(--pass product ID here--)



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Masalah MASUKKAN BULK di MySQL

  2. Bagaimana cara memperbaiki konflik Ajax dengan peringkat jQuery Drag n Drop?

  3. Gambar saya di database saya tidak diposting di situs saya (PHP MySQL)

  4. Permintaan pembaruan Python MySQLdb gagal

  5. Tabel MyISAM dan InnoDB dalam satu database