2013-10-03, 07:38:10
Ok guys I hope you can help with this one. I am using special page to make a news blog. I have a field created called "Category". I have this field marked to be "as tags". I am using the view function of the special page to display it's content.
At the bottom of the page is lists the tags that are associated with this special page.
How can I get the "Category" field to show up in this tag list as well?
Code:
div class="i18n-news-article">
<h2><?php get_special_field('subtitle','',false); ?></h2>
<div class="avatar"><?php if(return_special_field('avatar')=='') { echo ''; } else { echo '<img src="'; get_theme_url(); echo '/images/icons/'; echo lowercase(return_special_field('category')); echo '-icon-60x60.png"/>'; } ?></div>
<div class="date">Posted - <?php get_special_field_date('creDate', "%A %B %e, %Y"); ?></div>
<div class="category"><?php get_special_field('category','',false); ?></div>
<?php get_page_content(); ?>
<div class="tags"><strong>Tags</strong>: <?php get_special_tags($slug='i18n-search', $separator=',', $all=true) ?>
</div>
</div>
At the bottom of the page is lists the tags that are associated with this special page.
How can I get the "Category" field to show up in this tag list as well?