This article does not apply to Umbraco 8.
The concepts and code in this article have been deprecated in Umbraco 8 and no longer apply.
If you are using Umbraco 7, this article is perfect for you!
DynamicPublishedContent
DynamicPublishedContent is the dynamic version of IPublishedContent, it allows for simpler access to property data but it does not provide intellisense. All methods and properties that are available on IPublishedContent are also available on DynamicPublishedContent. However, there are a few special methods specifically designed for DynamicPublishedContent that are used for filtering, querying and collections.
Get started
To access the current page in your macros or templates, copy-paste the below Razor code.
@{
var pageName = CurrentPage.Name;
var childPages = CurrentPage.Children;
}
<h1>@pageName</h1>
Properties
Listing and explanation of DynamicPublishedContent properties & standard helpers for Content and Media.
Collections & Filtering
Methods for DynamicPublishedContent collections and filtering.
IsHelpers
A library of extension methods to simplify working with DynamicPublishedContents in collections to modify your HTML output. Examples could be injecting CSS classes for alternating rows or to modify margins.