2 Jul 2009 Modify the display of post tags and related posts
The display of nextgen gallery’s album page and simple tag plugin’s post tags and related posts function do not work weel. For each album in the album page, simple tag will generated a list of post tags and related post list. To make the album page of nextgen looks cleaner with simple post plugin, I have to disable and manually add the post tags (st_the_tags()) and related post list (st_related_posts()) into the single.php in my theme:
<div class="storycontent"> <?php the_content(__('(more...)')); ?> <?php st_related_posts(); ?> <?php st_the_tags(); ?> </div>
