buddypress/bp-themes/bp-default/home.php
Andy Peatling 4f63e16e72 Fixes #1752
git-svn-id: https://buddypress.svn.wordpress.org/trunk@2539 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2010-02-02 17:54:12 +00:00

14 lines
No EOL
408 B
PHP

<?php
/***
* Should we show the blog on the front page, or the activity stream?
* This is set in wp-admin > Appearance > Theme Options
*/
if ( !bp_is_active( 'activity' ) )
locate_template( array( 'index.php' ), true );
else {
if ( 'blog' == bp_dtheme_show_on_frontpage() )
locate_template( array( 'index.php' ), true );
else
locate_template( array( 'activity/index.php' ), true );
}
?>