| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentCart\App\Modules\Templating\BlockTemplates\TemplateParts; |
| 4 |
|
| 5 |
class TemplatePartService |
| 6 |
{ |
| 7 |
public function register() |
| 8 |
{ |
| 9 |
add_filter('get_block_templates', [$this, 'addTemplateParts'], 10, 3); |
| 10 |
} |
| 11 |
|
| 12 |
public function addTemplateParts($query_result, $query, $template_type) |
| 13 |
{ |
| 14 |
if ($template_type !== 'wp_template_part') { |
| 15 |
return $query_result; |
| 16 |
} |
| 17 |
|
| 18 |
|
| 19 |
|
| 20 |
|
| 21 |
} |
| 22 |
} |
| 23 |
|