Take a look at the picture:
Between the first tag and the word ‘Tags:’ is NO space.
How can I change that?
Take a look at the picture:
How can I change that?
Found the solution myself.
It’s the Renew-View. So I added to my child theme the directories framework/views/renew
In this directory I added the file _content-post-footer.php with this as content.
<?php
// =============================================================================
// VIEWS/RENEW/_CONTENT-POST-FOOTER.PHP
// -----------------------------------------------------------------------------
// Standard <footer> output for various posts.
// =============================================================================
?>
<?php if ( has_tag() ) : ?>
<footer class="entry-footer cf">
<?php echo get_the_tag_list( '<p><i class="x-icon-tags" data-x-icon-s=""></i>'. __( ' Tags : ', '__x__'), ', ', '</p>' ); ?>
</footer>
<?php endif; ?>
Hi Aschwin,
Glad that you are able to find the solution.
Thanks
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.