- Home
- Blog
- Etalon-Ukraine company wishes you a happy New Year! We wish victory, peace and happiness!
Etalon-Ukraine company wishes you a happy New Year! We wish victory, peace and happiness!
2023-12-28 19:00:00
Etalon-Ukraine company wishes you a happy New Year! We wish victory, peace and happiness!
Good to know
Mother's Day in Ukraine is celebrated on the second Sunday of May.
This holiday is a reason to tell mom that she is the dearest...
More details
May Easter be fragrant and may God's grace be with you!
Easter is among the traditional holidays in Ukrainian cultur...
More details
22 March - World Water Day
The purpose of events dedicated to this date is to draw atte...
More details
Dear women, we congratulate you on International Women's Day!
You are real professionals who successfully combine work and...
More details
Order a call back
Complain to the director
Login
Verification
Account created successfully
Order water
Recover password
Recover password
Cart
Your cart is empty!
get_results("SELECT ID, post_title, post_content, meta_value AS price FROM $wpdb->posts
INNER JOIN $wpdb->postmeta ON $wpdb->posts.ID = $wpdb->postmeta.post_id
WHERE $wpdb->posts.post_type = 'product' AND $wpdb->postmeta.meta_key = '_regular_price'");
// Створення CSV файлу
$filename = 'products.csv';
$fp = fopen($filename, 'w');
// Запис заголовків стовпців
fputcsv($fp, array('ID', 'Назва', 'Опис', 'Ціна'));
// Запис даних про товари
foreach ($results as $row) {
fputcsv($fp, array($row->ID, $row->post_title, $row->post_content, $row->price));
}
fclose($fp);
echo "Файл $filename успішно створено!";