Ejemplo n.º 1
0
if ($this->item->params->get('catItemTags') && count($this->item->tags)) {
    ?>
		<p>Tags: 	
		<!-- Item tags -->		
		<?php 
    $tags = array();
    ?>
	    <?php 
    foreach ($this->item->tags as $tag) {
        ?>
	    <?php 
        //$tags[] = '<span><a href="'.$tag->link.'">'. $tag->name.'</a></span>';
        ?>
	    
	    <?php 
        $tags[] = '<span><a href="' . TmplK2Helper::getSearchTagLink($tag->name) . '">' . $tag->name . '</a></span>';
        ?>
	    
	    <?php 
    }
    ?>
		<?php 
    echo implode('<span class="separator">,</span>', $tags);
    ?>
		</p>
		<?php 
}
?>
		<?php 
if ($this->item->params->get('catItemAuthor')) {
    ?>