| 1 |
<?php |
| 2 |
/* |
| 3 |
* Archive / Blog Full Width |
| 4 |
*/ |
| 5 |
|
| 6 |
if ( ! defined( 'ABSPATH' ) ) { |
| 7 |
exit; // Exit if accessed directly. |
| 8 |
} |
| 9 |
|
| 10 |
get_header(); |
| 11 |
|
| 12 |
/** |
| 13 |
* Before Header-Footer page template content. |
| 14 |
* |
| 15 |
* Fires before the content of Elementor Header-Footer page template. |
| 16 |
* |
| 17 |
* @since 2.0.0 |
| 18 |
*/ |
| 19 |
do_action( 'elementor/page_templates/header-footer/before_content' ); ?> |
| 20 |
|
| 21 |
<?php do_action( 'easyel_builder_archive_content' ); ?> |
| 22 |
|
| 23 |
<?php |
| 24 |
|
| 25 |
/** |
| 26 |
* After Header-Footer page template content. |
| 27 |
* |
| 28 |
* Fires after the content of Elementor Header-Footer page template. |
| 29 |
* |
| 30 |
* @since 2.0.0 |
| 31 |
*/ |
| 32 |
do_action( 'elementor/page_templates/header-footer/after_content' ); |
| 33 |
|
| 34 |
get_footer(); |
| 35 |
|
| 36 |
/* Omit closing PHP tag at the end of PHP files to avoid "headers already sent" issues. */ |
| 37 |
|