Diff: STRATO-apps/wordpress_03/app/wp-content/themes/blocksy/archive.php

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
1 + <?php
2 + /**
3 + * The template for displaying archive pages
4 + *
5 + * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
6 + *
7 + * @package Blocksy
8 + */
9 +
10 + get_header();
11 +
12 + if (
13 + ! function_exists('elementor_theme_do_location')
14 + ||
15 + ! elementor_theme_do_location('archive')
16 + ) {
17 + get_template_part('template-parts/archive');
18 + }
19 +
20 + get_footer();
21 +