Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

Làm cách nào để các danh mục và danh mục con cho WooCommerce được lưu trong DB?

function getParentCategories() {
    global $wpdb;
    $sql = "SELECT term_id as id, name, slug FROM wp_terms where term_id in (SELECT term_id FROM wp_term_taxonomy where parent = 0 and taxonomy = 'category') order by name asc";
    $parents = $wpdb->get_results( $sql );
    return $parents;
}

function getChildCategories($id) {
    global $wpdb;
    $sql = "SELECT term_id as id, name, slug FROM wp_terms where term_id in (SELECT term_id FROM wp_term_taxonomy where parent = $id and taxonomy = 'category')  order by name asc";
    $children = $wpdb->get_results( $sql );
    return $children;
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. MySQL TẢI DỮ LIỆU ĐỊA PHƯƠNG INFILE Python

  2. giản đồ cơ sở dữ liệu cho các thuộc tính sản phẩm

  3. Giải thích MySQL giải thích các phép toán kế hoạch thực thi, sự khác biệt giữa hai kế hoạch

  4. MySQL Proxy thay thế cho Cơ sở dữ liệu Sharding

  5. Java.lang.IllegalStateException:Đã được đính kèm