The collection_is_featured
helper returns whether the current collection is featured.
Usage
<?php collection_is_featured(); ?>
Arguments
None
Examples
The following example will print 'Featured Collection' on the collections/show.php page, if the collection your are viewing is a featured collection.
<?php if(collection_is_featured()) echo 'Featured Collection'; ?>