I have a tagcloud displayed in a widget in my footer using:
<div class="widget tags" style="line-height:20px; word-spacing:8px;">
<?php $args = array(
'smallest' => 8,
'largest' => 18,
'unit' => 'pt',
'number' => 45,
'separator' => ' ',
'orderby' => 'name',
'format' => 'flat',
'order' => 'RAND',
'exclude' => '',
'include' => '',
'link' => 'view',
'taxonomy' => 'ngg_tag',
'echo' => true ); ?>
<?php echo ng_tag_cloud($args); ?>
</div>
I have a page that displays the results using:
[tagcloud]
The functionality works perfectly with tagged photos displaying in a table gallery layout. However, above the thumbnails I would like to add the title of the tag in question in a sentence "Photos tagged as: <tag name>:".
Can anyone offer some advice?
My site is http://www.agordonphotography.com/ - in addition to the above, any general comments on this new site would be great!