buddypress/bp-themes/bp-default/home.php
Andy Peatling 1fc17a605d Fixes #1603
git-svn-id: https://buddypress.svn.wordpress.org/trunk@2308 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2010-01-15 13:04:38 +00:00

11 lines
No EOL
309 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 ( 'blog' == bp_dtheme_show_on_frontpage() )
locate_template( array( 'index.php' ), true );
else
locate_template( array( 'activity/index.php' ), true );
?>