Skip to content

Instantly share code, notes, and snippets.

@whyisjake
Created October 16, 2012 03:27
Show Gist options
  • Save whyisjake/3897093 to your computer and use it in GitHub Desktop.
Save whyisjake/3897093 to your computer and use it in GitHub Desktop.
BuddyPress Loop Sample
<?php
error_reporting(E_ALL);
define('WP_DEBUG', true);
/**
* Template Name: Mentor Makerpsace Group
*/
get_header(); ?>
<div id="primary">
<div id="content" role="main">
<?php global $switched;
switch_to_blog(1);
$group = new BP_Groups_Group( 2 );
print_r($group);
?>
    
<h1><?php bloginfo('name'); ?></h1>
<?php restore_current_blog(); ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment