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