Listing Pingbacks

Pingbacks are accessible via the decorator described in Article Commenting and can be listed in the same way as article comments. To retrieve the number of pingbacks:

${article.relatedElements.forum.pingBackCount}

To retrieve the actual pingbacks:

<c:forEach var="pingback" items="${article.relatedElements.forum.pingBacks}">
  <p>${pingback.title}</p>
</c:forEach>