Skip to content

Instantly share code, notes, and snippets.

View jackofallvices's full-sized avatar

jackofallvices

View GitHub Profile
@imath
imath / bp-custom.php
Created September 18, 2014 22:26
add BuddyPress auto suggest mention feature in bbPress.
<?php
/** You could put this in the bp-custom.php file
* @see http://codex.buddypress.org/themes/bp-custom-php/
*/
function custom_bbpress_maybe_load_mentions_scripts( $retval = false ) {
if ( function_exists( 'bbpress' ) && is_bbpress() ) {
$retval = true;
}
return $retval;