31 lines
974 B
PHP
31 lines
974 B
PHP
<?php
|
|
if (!defined('ABSPATH')) {
|
|
exit;
|
|
}
|
|
|
|
get_header();
|
|
|
|
$results = Ansico_LN_Plugins::get_taxonomy_archive_results();
|
|
$description = Ansico_LN_Plugins::get_current_taxonomy_description();
|
|
?>
|
|
|
|
<main id="primary" class="site-main ansico-ln-taxonomy-results" style="max-width: 960px; margin: 0 auto; padding: 2rem 1rem;">
|
|
<header class="page-header" style="margin-bottom: 2rem;">
|
|
<h1 class="page-title"><?php single_term_title(); ?></h1>
|
|
</header>
|
|
|
|
<?php if (!empty($description)) : ?>
|
|
<div class="archive-description" style="margin-bottom:1.5rem;">
|
|
<?php echo wp_kses_post($description); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if (!empty($results)) : ?>
|
|
<?php echo Ansico_LN_Plugins::render_simple_results_list($results); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
|
|
<?php else : ?>
|
|
<p>Der blev ikke fundet nogen resultater.</p>
|
|
<?php endif; ?>
|
|
</main>
|
|
|
|
<?php
|
|
get_footer();
|