Publishing posts

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

  1. Get an instance of the manager.
    Get instance of the ForumsManager object.
  2. 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();
}

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