-
apply_filters( 'bbp_genesis_force_full_content_width', $bbp_genesis_width )
Source Reference:
-
*/ public function force_full_content_width( $bbp_genesis_width = 'full-width-content' ) { // Only override the content width while in bbPress if ( is_bbpress() ) { $bbp_genesis_width = $this->bbp_genesis_width; } // Allow the override to be overridden - a dream within a dream return apply_filters( 'bbp_genesis_force_full_content_width', $bbp_genesis_width ); } } endif; /** * Loads Genesis helper inside bbPress global class * * @since bbPress (r3485) * * @global bbPress $bbp
-