Publishing threads

To publish or unpublish a thread, you must perform the following:

  1. Get an instance of the manager.
    Get instance of the ForumsManager object.
  2. Modify the thread.
    Change the value of the IsPublished property of the thread. For more information, see Modifying threads.

Here is a code example:

public void PublishThread(Guid threadId)
{
    ForumsManager forumsManager = ForumsManager.GetManager();
 
    ForumThread thread = forumsManager.GetThread(threadId);
    thread.IsPublished = true;
 
    forumsManager.SaveChanges();
}
 
public void UnpublishThread(Guid threadId)
{
    ForumsManager forumsManager = ForumsManager.GetManager();
 
    ForumThread thread = forumsManager.GetThread(threadId);
    thread.IsPublished = false;
 
    forumsManager.SaveChanges();
}

Next steps

+1-888-365-2779
sales@sitefinity.com

Related topics:

Feedback

How useful is this article?

Tell us more

Submit
Your message was successfully sent.

We appreciate your feedback.

Your message could not be sent.

OK