Modify blogs

To modify a blog, you must perform the following:

  1. Get the blog.

    Get an instance of the blog that you want to modify.

  2. Modify the blog.

    Set the properties of the blog to the new values.

  3. Save the blog.

    Save the changes that have been made to the blog.

The example below shows you how to modify a blog by its ID.

Modifying a blog by its ID

The following code modifies a blog by its ID.

Native API

First, you get an instance of the BlogsManager class. Then, you get the blog with the specified ID. You update the values of the properties of the blog. In this example you modify the title of the blog and its URL. Finally, you call SaveChanges to persist the changes.

Fluent API

First, you check whether a blog with the specified ID exists. Then, you get the singular facade of the blog with the specified ID. To modify the blog, you call the Do method of the facade. In this example you update the title of the blog and its URL. Finally, to save the changes, you call the SaveChanges method of the facade.

Want to learn more?

Sign up for our free beginner training. Boost your credentials through advanced courses and certification.
Register for Sitefinity training and certification.

Was this article helpful?

Next article

Delete blogs