getAllCommentIds
Description
Gets all the comment IDs that are already entered on a page.
Parameters
Return Type
Number []
IDs of the comments on the page.
Examples
Example 1
Print Page has 12 comments for example.
number [] allComm = getAllCommentIds(11801);
print("Page has " + size(allComm) + " comments";
Example 2
Deletes all comments older than 1 year from page ID 11801.
number [] allComm = getAllCommentIds(11801);
interval year = "365d";
for(number c in allComm) {
CComment comm = getCommentById(c);
if(comm.created < (currentDate - year)) {
deleteComment(c)
}
}
See also
Peacock