/templates/gk_writer/com_content/article/default.php
- Code: Select all
<?php if ($params->get('show_tags', 1) && !empty($this->item->tags->itemTags)) : ?>
<div class="tags"><span class="tags-label"><?php echo JText::sprintf('TPL_GK_LANG_TAGGED_UNDER'); ?></span>
<?php foreach ($this->item->tags->itemTags as $tag) : ?>
<a href="<?php echo JRoute::_(TagsHelperRoute::getTagRoute($tag->tag_id . ':' . $tag->alias)) ?>"><?php echo $tag->title; ?></a>
<?php endforeach; ?>
</div>
<?php endif; ?>
Can you tell me how I can modify this to order by the "lft" column instead of the "id" column of the tags table?
Thanks!