This includes all CMS objects in which at least one html
, link
, linklist
, reference
or referencelist
attribute links to this CMS object.
Attributes inside widgets are considered, too.
Returns
Array<Obj>
Returns a list of all Obj
s that link to this Obj
.
obj = Scrivito.Obj.getByPermalink("blog");
backlinks = obj.backlinks();
for (var backlink of backlinks) {
console.log(backlink.get("title"));
}
This includes all CMS objects in which at least one html
, link
, linklist
, reference
or referencelist
attribute links to this CMS object.
Attributes inside widgets are considered, too.
Returns
Array<Obj>