Blogs
This section provides you with an overview of the Blogs Module API and guides you through the common tasks when working with blogs.
The Blogs Module allows users to create blogs and blog posts.
Sitefinity back-end provides you with a user-friendly interface to create blogs and blog posts. You can also create them programmatically using the Native or Fluent APIs.
The section contains the following:
-
Managing blogs
Describes how to create, query, search, modify and delete blogs using Native or Fluent API.
-
Managing blog posts
Describes how to create, query, search, modify and delete blog posts inside a blog using Native or Fluent API.
To manage blogs and blog posts through the Native API, you must add the following namespaces to your class:
using Telerik.Sitefinity.GenericContent.Model;
using Telerik.Sitefinity.Blogs.Model;
using Telerik.Sitefinity.Modules.Blogs;
using Telerik.Sitefinity.Workflow;
To manage blogs and blog posts through the Fluent API, you must add the following namespaces to your class:
using Telerik.Sitefinity;
using Telerik.Sitefinity.GenericContent.Model;
using Telerik.Sitefinity.Blogs.Model;
using Telerik.Sitefinity.Workflow;
See Also