diff --git a/wp-content/themes/twentytwentyfour/page-test1.php b/wp-content/themes/twentytwentyfour/page-test1.php
index 807284ec..89e0e763 100644
--- a/wp-content/themes/twentytwentyfour/page-test1.php
+++ b/wp-content/themes/twentytwentyfour/page-test1.php
@@ -6,8 +6,155 @@
* @since Twenty Twenty-Four 1.0
*/
+/**
+ * Build the catalog markup from WooCommerce products.
+ *
+ * @return string
+ */
+function twentytwentyfour_test1_catalog_markup() {
+ if ( ! class_exists( 'WooCommerce' ) ) {
+ return '';
+ }
+
+ $products = wc_get_products(
+ array(
+ 'status' => 'publish',
+ 'limit' => 3,
+ 'order' => 'ASC',
+ 'orderby'=> 'date',
+ )
+ );
+
+ if ( empty( $products ) ) {
+ return '';
+ }
+
+ ob_start();
+ ?>
+
+ $product ) : ?>
+ get_image_id();
+ $image_html = $image_id ? wp_get_attachment_image( $image_id, 'medium', false, array( 'class' => 'catalog-product-image' ) ) : '';
+ $short_text = $product->get_short_description();
+ if ( '' === trim( wp_strip_all_tags( $short_text ) ) ) {
+ $short_text = $product->get_description();
+ }
+ $short_text = wp_trim_words( wp_strip_all_tags( $short_text ), 22, '...' );
+ $price = wp_strip_all_tags( $product->get_price_html() );
+ $volume = $product->get_attribute( 'volume' );
+ if ( '' === $volume ) {
+ $volume = $product->get_attribute( 'pa_volume' );
+ }
+ if ( '' === $volume ) {
+ $volume = __( 'Товар', 'twentytwentyfour' );
+ }
+ ?>
+
+
+
+
+ 💧
+
+ get_name() ); ?>
+
+
+
+ is_in_stock() ) : ?>
+
+
+
+
+
+
+
+
+
+
+ 💧
+ Вода 19 литров
+ Главный формат для кулеров, кухни и офиса. Самая выгодная цена за литр и удобная возвратная тара.
+
+ хит продаж
+ для кулера
+
+ 290 ₽за бутыль
+
+
+
+
+ 🫙
+ Вода 5 литров
+ Удобный домашний формат для кухни, поездок и дачи. Легко хранить, просто переносить.
+
+ домой
+ компактно
+
+ 95 ₽за бутылку
+
+
+
+
+ 🥤
+ 0.5 / 1.5 литра
+ Для тренировок, поездок, мероприятий и ежедневного запаса питьевой воды дома или на работе.
+
+ спорт
+ мероприятия
+
+ 39 ₽от 0.5 л
+
+
+
+
+ ⛰️
+ Минеральная вода
+ Освежающий вариант для гостей, кафе и тех, кто предпочитает яркий минеральный вкус.
+
+ для кафе
+ рестораны
+
+ 68 ₽за 1.5 л
+
+
+
+
+ ✨
+ Газированная / негазированная
+ Соберите микс под привычки семьи или офиса: мягкая вода на каждый день и газированная к столу.
+
+ микс заказ
+ на выбор
+
+ 45 ₽за 0.5 л
+
+
+
+HTML;
+
+ $landing_html = str_replace( $catalog_static_markup, $catalog_markup, $landing_html );
+ }
+}
?>
>