Reply To: Read More Label in Search Result Page

Home Forums Support Read More Label in Search Result Page Reply To: Read More Label in Search Result Page

Home Forums Support Read More Label in Search Result Page Reply To: Read More Label in Search Result Page

#211743
Markus

In case you need it: this I used to display the tags on pages.

<?php if ('page' == get_post_type() and has_tag()): ?>
<footer class="entry-meta">
<span class="tags-links"><span class="screen-reader-text">Tags </span>
<?php the_tags(' ', ', ', '<br />'); ?>
</span>
</footer>
<?php endif; ?>