recent_comments
The recent_comments tag is a single or a container tag. Textpattern will replace this tag with a list of permanent links to recent comments. This list will be displayed with the format
User’s Name (Article Name)
If used as a container, the tag must be specified as an opening and closing pair, like this:
<txp:recent_comments>
...contained statements...
</txp:recent_comments>
attributes
sort="posted asc"
limit="10" (integer)
offset="unset" (integer)
presentation
label="unset"
labeltag="unset"
break="br"
wraptag="unset"
class="recent_comments"
genealogy
Version 4.0.7
Labeled list of recent comments
<txp:recent_comments label="Recent Comments" limit="25" wraptag="p" break="br" />
Recent comments as an unordered list
<txp:recent_comments label="Recent Comments" wraptag="ul" break="li" />
Style for default class could go this way:
.recent_comments {
list-style-type:none;
}