Publishing posts
To publish or unpublish a post, you must perform the following:
- Get an instance of the manager.
Get instance of the ForumsManager object.
- Modify the post.
Change the value of the IsPublished property of the post. For more information, see Modifying posts.
Here is a code example:
public void PublishPost(Guid postId)
{
ForumsManager forumsManager = ForumsManager.GetManager();
ForumPost post = forumsManager.GetPost(postId);
post.IsPublished = true;
forumsManager.SaveChanges();
}
public void UnpublishPost(Guid postId)
{
ForumsManager forumsManager = ForumsManager.GetManager();
ForumPost post = forumsManager.GetPost(postId);
post.IsPublished = false;
forumsManager.SaveChanges();
}