Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Jak kategorie i podkategorie dla WooCommerce są zapisywane w DB?

funkcja
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. Korzystanie z Amazon RDS z aplikacją na Androida

  2. Wyświetlanie wszystkich nazw tabel w php z bazy danych MySQL

  3. Szyny 3 - Chętne ładowanie z warunkami

  4. Grupowanie rekordów z pętli while | PHP

  5. Mysql -- Ostatnie 30 dni