17 lines
289 B
PHP
17 lines
289 B
PHP
<!--[micro/terms]-->
|
|
|
|
<div class="d-none">
|
|
|
|
<?php foreach (wp_get_post_terms( get_the_ID(), ["category"] ) as $term) : ?>
|
|
|
|
<span itemprop="articleSection">
|
|
|
|
<?= $term->name ?>
|
|
|
|
</span>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</div>
|
|
|
|
<!--[/micro/terms]-->
|