Add kolorystyka_drewno_block shortcode and FTP sync cache file

- Implemented a new shortcode 'kolorystyka_drewno_block' in functions.php to display a styled section with an image, heading, description, and a button linking to the color palette.
- Added a new FTP sync cache configuration file to track the state of files in the project directory.
This commit is contained in:
2026-02-12 13:27:39 +01:00
parent 2287b36947
commit e6318ecadd
24 changed files with 1730 additions and 1316 deletions

View File

@@ -421,3 +421,29 @@ function kolorystyka_block_shortcode() {
return ob_get_clean();
}
add_shortcode('kolorystyka_block', 'kolorystyka_block_shortcode');
function kolorystyka_drewno_block_shortcode() {
ob_start();
?>
<div class="kolorystyka-block">
<div class="c-row">
<div class="c-col-1">
<img src="/wp-content/uploads/2026/01/kolorystyka.jpg" alt="">
</div>
<div class="c-col-2">
<h3>Kolorystyka</h3>
<p>
Jedna z kluczowych kwestii w aranżacji domu. Nadaje styl i charakter
zarówno elewacji, jak i wnętrzom budynku. Oferujemy szeroką paletę kolorów,
która pozwala idealnie dopasować nasze okna do designu inwestycji.
</p>
<a href="/kolory-drewno/" class="kolorystyka-button">
Zobacz paletę kolorów
</a>
</div>
</div>
</div>
<?php
return ob_get_clean();
}
add_shortcode('kolorystyka_drewno_block', 'kolorystyka_drewno_block_shortcode');