My company is using Umbraco for a project having many nodes, in turn having published and unpublished sites. My requirement is to get a list of all published site across all node in an xslx, csv etc. Is there any way to get this without hitting Umbraco extented APIs?
Hi, Juhi,
When you make queries through Umbraco tree the queries always return only the published nodes. You can make new Document Type and Template. In the template you can do something similar to CurrentPage.Site().Descendants() and this should return only the published nodes. You can structure your Template in a way to copy/paste in csv/excel.
List of all published site
Hello,
My company is using Umbraco for a project having many nodes, in turn having published and unpublished sites. My requirement is to get a list of all published site across all node in an xslx, csv etc. Is there any way to get this without hitting Umbraco extented APIs?
Can some help?
Hi, Juhi, When you make queries through Umbraco tree the queries always return only the published nodes. You can make new Document Type and Template. In the template you can do something similar to CurrentPage.Site().Descendants() and this should return only the published nodes. You can structure your Template in a way to copy/paste in csv/excel.
Hope that this will help.
Mila
is working on a reply...