Create forum threads

This topic contains the following:

  • Creating an empty thread
  • Creating a thread with a first post

Creating an empty

To create an empty thread , you must perform the following:

  1. Get an instance of the manager.
    Get instance of the ForumsManager object.
  2. Create a new thread.
    To create a new thread, call the CreateThread method of the manager.
  3. Set the properties.
    Set the properties of the ForumThread instance. For more information about the specific properties, read For developers: Forum threads.
  4. Add the thread to a forum.
    To add the thread to a forum, set the Forum property of the ForumThread instance to an instance of a forum.
  5. Publish the thread.
    To publish the thread, set the IsPublished property to true.
  6. Save the changes.
    Save the changes to the manager.

Here is a code example: ```C# using System; using System.Text.RegularExpressions; using Telerik.Sitefinity.Forums; using Telerik.Sitefinity.Forums.Model;

namespace Telerik.Sitefinity.Documentation.CodeSnippets.DevGuide.SitefinityEssentials.Modules.Forums.Threads { public partial class ForumThreadsSnippets { public static void CreateThread(string threadTitle, Guid forumId) { ForumsManager forumsManager = ForumsManager.GetManager();

        ForumThread thread = forumsManager.CreateThread();

        thread.Title = threadTitle;
        thread.UrlName = Regex.Replace(threadTitle.ToLower(), @"[^\w\-\!\$\'\(\)\=\@\d_]+", "-");
        thread.Forum = forumsManager.GetForum(forumId);
        thread.LastModified = DateTime.UtcNow;

        thread.IsPublished = true;

        forumsManager.RecompileItemUrls<ForumThread>(thread);

        forumsManager.SaveChanges();
    }
}

}

## Creating a thread with a first post
 
To create a thread with a first post, you must perform the following:

1. Get an instance of the manager.  
    Get instance of the `ForumsManager` object.
2. Create a new thread.  
    To create a new thread, call the `CreateThreadWithPost` method of the manager and pass the instance of the forum, the title of the thread and the contents of the post as arguments. This method handles the creating of a thread and a post in it.
3. Save the changes.  
    Save the changes to the manager.

Here is a code example:      ```C#
using System;
using Telerik.Sitefinity.Forums;
using Telerik.Sitefinity.Forums.Model;

namespace Telerik.Sitefinity.Documentation.CodeSnippets.DevGuide.SitefinityEssentials.Modules.Forums.Threads
{
    public partial class ForumThreadsSnippets
    {
        public static void CreateThreadWithFirstPost(string threadTitle, string postContent, Guid forumId)
        {
            ForumsManager forumsManager = ForumsManager.GetManager();

            var forum = forumsManager.GetForum(forumId);

            ForumThread thread = forumsManager.CreateThreadWithPost(forum, threadTitle, postContent);
            forumsManager.RecompileItemUrls(thread);
            forumsManager.SaveChanges();
        }
    }
}
Want to learn more?
Enhance your Sitefinity skills by enrolling in free training sessions. Become Sitefinity certified through Progress Education Community to strengthen your professional credentials.
This Article Contains
New to Sitefinity?