gb-template-viewer.php
21 lines
| 1 | <?php |
| 2 | /** |
| 3 | * The GB template viewer file. |
| 4 | * |
| 5 | * @package GenerateBlocks |
| 6 | */ |
| 7 | |
| 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | exit; // Exit if accessed directly. |
| 10 | } |
| 11 | ?><!DOCTYPE html> |
| 12 | <html <?php language_attributes(); ?>> |
| 13 | <head> |
| 14 | <meta charset="<?php bloginfo( 'charset' ); ?>"> |
| 15 | <?php wp_head(); ?> |
| 16 | </head> |
| 17 | <body style="overflow-y: hidden;"> |
| 18 | <?php do_action( 'wp_footer' ); // phpcs:ignore -- Need to use core action. ?> |
| 19 | </body> |
| 20 | </html> |
| 21 |