wp-productzilla/wp-content/themes/blocksy/archive.php
rizal.productzilla e38e8b231d templating
2024-04-01 16:08:46 +07:00

21 lines
344 B
PHP

<?php
/**
* The template for displaying archive pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Blocksy
*/
get_header();
if (
! function_exists('elementor_theme_do_location')
||
! elementor_theme_do_location('archive')
) {
get_template_part('template-parts/archive');
}
get_footer();