Files
2025-01-01 03:08:58 -08:00

27 lines
1.2 KiB
PHP

<?php
class Lcp_Blocks {
private $template_directory;
public function __construct() {
// Set the template directory path
$this->template_directory = get_template_directory();
// Include files
include $this->template_directory. '/includes/blocks/lcp-gallery/lcp-gallery.php';
include $this->template_directory. '/includes/blocks/lcp-viewport/lcp-viewport.php';
include $this->template_directory. '/includes/blocks/lcp-sidecontent/lcp-sidecontent.php';
include $this->template_directory. '/includes/blocks/lcp-main-area/lcp-main-area.php';
include $this->template_directory. '/includes/blocks/lcp-header-container/lcp-header-container.php';
include $this->template_directory. '/includes/blocks/lcp-dynamic-container/lcp-dynamic-container.php';
include $this->template_directory. '/includes/blocks/lcp-key-points/lcp-key-points.php';
include $this->template_directory. '/includes/blocks/lcp-button/lcp-button.php';
include $this->template_directory. '/includes/blocks/lcp-visualizer/lcp-visualizer.php';
include $this->template_directory. '/includes/blocks/lcp-footer-container/lcp-footer-container.php';
}
}