# easy-elements/1.3.0/includes/Theme_Builder/elementor-canvas/archive.php

Easy Elements for Elementor – Addons &amp; Website Templates, version 1.3.0. 37 lines.

- Page: https://pluginprobe.com/plugins/easy-elements/1.3.0/code/includes/Theme_Builder/elementor-canvas/archive.php
- Raw: https://pluginprobe.com/plugins/easy-elements/1.3.0/raw/includes/Theme_Builder/elementor-canvas/archive.php
- Modified: 2026-01-11T12:20:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/easy-elements/1.3.0/code/includes/Theme_Builder/elementor-canvas/archive.php#L10-L20`.

```php
<?php
/*
* Archive / Blog Full Width
*/

if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly.
}

get_header();

/**
 * Before Header-Footer page template content.
 *
 * Fires before the content of Elementor Header-Footer page template.
 *
 * @since 2.0.0
 */
do_action( 'elementor/page_templates/header-footer/before_content' ); ?>

    <?php do_action( 'easyel_builder_archive_content' ); ?>

<?php 

/**
 * After Header-Footer page template content.
 *
 * Fires after the content of Elementor Header-Footer page template.
 *
 * @since 2.0.0
 */
do_action( 'elementor/page_templates/header-footer/after_content' );

get_footer();

/* Omit closing PHP tag at the end of PHP files to avoid "headers already sent" issues. */

```
