9mois
Member
Posted 10 months ago #
Hello,
I looked at the other topics but could not find an answer to my question. I am using Yoko theme and would like to remove the tag list which shows below every entry. I tried to do it in the editor but couldn't find the lines to modify.
Would anyone have an idea on how to do it?
Thanks a lot in advance!
Look in the content.php file for something like:
<?php $tags_list = get_the_tag_list( '', ', ' );
if ( $tags_list ): ?>
<?php printf( __( 'Tags: %2$s', 'yoko' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?> |
<?php endif; ?>
9mois
Member
Posted 10 months ago #
Thank you very much, it works perfectly!