Group Blogs

Get Started

Link posts to BuddyPress/BuddyBoss groups for community blogging.

Location: Member Blog → Groups

Requires: BuddyPress or BuddyBoss with Groups component active


Overview

Group Blogs connect member posts to community groups:

  • Posts appear in group activity feeds
  • Groups get a dedicated Blog tab
  • Post visibility follows group privacy
  • Group admins can feature posts

Core Features

Feature Description
Link Posts to Groups Members choose which group a post belongs to
Group Blog Tab Dedicated blog section on group pages
Group Activity Posts appear in group activity stream
Featured Posts Pin important posts within groups
Privacy Inheritance Post visibility matches group privacy

Settings

Setting Description
Who Can Link Posts Admin only, Moderators, or All Members
Show Group on Single Post Display linked group name on posts
Activity Integration Create activity entry when post published

Who Can Link Posts Options

Option Who Can Link
Group Admins Only Only group administrators
Admins & Moderators Group admins and moderators
All Group Members Any member of the group

Per-Group Settings

Group admins can enable/disable blog functionality for their group:

  1. Go to the group page
  2. Click Manage → Settings
  3. Find Member Blog section
  4. Toggle Enable Group Blog
  5. Save changes

How Members Link Posts

  1. Create or edit a post
  2. Find the Link to Group dropdown
  3. Select a group (only shows groups where they have permission)
  4. Publish the post
  5. Post appears in group’s Blog tab and activity

Privacy Behavior

Post visibility automatically matches group privacy:

Group Type Activity Visibility Post Access
Public Site-wide activity feed Anyone can view
Private Group activity only Group members only
Hidden Group activity only Group members only

Important Notes

  • Linking to a private group makes the post private
  • Unlinking restores original post visibility
  • Non-members see “You don’t have access” message

Group Blog Tab

When enabled, groups show a Blog tab with:

  • All posts linked to the group
  • Featured posts at the top
  • Pagination for older posts
  • Author information and dates

Tab Appearance

The Blog tab appears in the group navigation:

Home | Activity | Members | Blog | Settings

Featured Posts

Group admins can feature important posts:

  1. Go to group’s Blog tab
  2. Find the post to feature
  3. Click Feature (star icon)
  4. Post moves to top of the list

Featured Post Display

  • Shows at the top of the Blog tab
  • Highlighted with a “Featured” badge
  • Remains until unfeatured

Activity Integration

When a member publishes a group-linked post:

  1. Activity entry created in group stream
  2. Shows post title, excerpt, and featured image
  3. Links to full post
  4. Members can comment on activity

Activity Format

[Author Name] published a new blog post in [Group Name]

[Post Title]
[Excerpt...]

[Read More] [Comment] [Like]

Use Cases

Community News

  • Create a “News” group
  • Only admins can link posts
  • Feature important announcements

Topic-Based Blogging

  • Groups for different topics (Tech, Lifestyle, Sports)
  • All members can post to their interest groups
  • Creates organized content hubs

Team Collaboration

  • Private groups for internal teams
  • Share drafts and updates within the group
  • Keep discussions contained

Course Communities

  • Groups for each course/class
  • Students post assignments and discussions
  • Instructors feature exemplary work

Shortcodes

Display group posts outside the group:

// In theme templates
$args = array(
    'meta_key'   => '_bpmb_group_id',
    'meta_value' => $group_id,
);
$query = new WP_Query( $args );

Troubleshooting

Issue Solution
Blog tab not showing Check if group blog is enabled in group settings
Can’t link to group Verify user has permission (check “Who Can Link” setting)
Post not in activity Confirm Activity Integration is enabled
Wrong privacy Unlinking and relinking refreshes privacy inheritance
Last updated: January 16, 2026