This commit is contained in:
Roman Pyrih
2024-12-02 15:54:04 +01:00
parent deb93484fe
commit 8a6dc99529
5 changed files with 696 additions and 1 deletions

View File

@@ -290,4 +290,11 @@ function display_black_week_page() {
include get_template_directory() . '/custom-pages/black-week.php';
return ob_get_clean();
}
add_shortcode('page_black_week', 'display_black_week_page');
add_shortcode('page_black_week', 'display_black_week_page');
function display_promotion_hivernale_page() {
ob_start();
include get_template_directory() . '/custom-pages/promotion-hivernale.php';
return ob_get_clean();
}
add_shortcode('page_promotion_hivernale', 'display_promotion_hivernale_page');