Changes to directory structure

This commit is contained in:
Jeremy Rangel
2024-12-18 02:27:09 -08:00
parent d5a5f4e87b
commit 94d2c7c8a2
135 changed files with 335 additions and 5435 deletions

View File

@ -0,0 +1,30 @@
<?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/main-area.php';
include $this->template_directory. '/includes/blocks/lcp-header-container/header-container.php';
include $this->template_directory. '/includes/blocks/lcp-container/lcp-dynamic-container.php';
include $this->template_directory. '/includes/blocks/lcp-key-points/key-points.php';
include $this->template_directory. '/includes/blocks/lcp-button/lcp-button.php';
}
}