Created
October 16, 2012 03:27
-
-
Save whyisjake/3897093 to your computer and use it in GitHub Desktop.
BuddyPress Loop Sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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