Hello,
You can change it. Tags are now in CloudHost/layouts/content.post.footer.php file, you can move this fragment into content.header.php or directly into gavern/helpers/helpers.layout.fragments.php file (gk_post_meta function):
- Code: Select all
<?php if($tag_list != '' && $param_tags): ?>
<p class="tags">
<?php _e('Tagged under:', GKTPLNAME); ?>
<?php echo $tag_list; ?>
</p>
<?php endif; ?>
Don't forget about $tag_list variable after global $tpl.