Last active
August 29, 2015 14:16
-
-
Save thecodepoetry/0e9c699ae8437e2b581b to your computer and use it in GitHub Desktop.
bbpress fix
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
| function dt_buddypress_template_config() { | |
| if( bbp_is_single_user() ){ | |
| $pagid = 35215; //sidebar, footer settings of the page id given will be applied to user profiles | |
| $config = presscore_get_config( ); | |
| presscore_config_base_init( $pagid ); | |
| } | |
| } | |
| add_action( 'get_header', 'dt_buddypress_template_config', 10 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment