Skip to:
Content

BuddyPress.org

Ticket #3108: ticket.3108.diff

File ticket.3108.diff, 1.0 KB (added by ptahdunbar, 14 years ago)
  • bp-loader.php

     
    2020if ( !defined( 'BP_DB_VERSION' ) )
    2121        define( 'BP_DB_VERSION', 3706 );
    2222
    23 // Place your custom code (actions/filters) in a file called
    24 // '/plugins/bp-custom.php' and it will be loaded before anything else.
     23/**
     24 * Drop-in a bp-custom.php file within the plugins/ directory or
     25 * the active theme's directory to customize BuddyPress before it loads.
     26 */
    2527if ( file_exists( WP_PLUGIN_DIR . '/bp-custom.php' ) )
    2628        require_once( WP_PLUGIN_DIR . '/bp-custom.php' );
    2729
     30if ( file_exists( get_stylesheet_directory() . '/bp-custom.php' ) )
     31        require_once( get_stylesheet_directory() . '/bp-custom.php' );
     32
     33elseif ( file_exists( get_template_directory() . '/bp-custom.php' ) )
     34        require_once( get_template_directory() . '/bp-custom.php' );
     35
    2836// Define on which blog ID BuddyPress should run
    2937if ( !defined( 'BP_ROOT_BLOG' ) )
    3038        define( 'BP_ROOT_BLOG', 1 );