访客评论足迹 - CommentTracks
通过判断邮箱,来记录您评论过的文章。
侧边栏调用示例:
<?php if(CommentTracks::output()->to($tracks)->have()): ?> <div class="widget"> <h3><?php _e('您的足迹'); ?></h3> <ul> <?php while($tracks->next()): ?> <li><a href="<?php $tracks->permalink(); ?>" title="<?php $tracks->title(); ?>"><?php $tracks->author(false); ?></a>: <?php $tracks->excerpt(9, '...'); ?></li> <?php endwhile; ?> </ul> </div> <?php endif; ?>