
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php 

add_filter( 'bbp_before_get_breadcrumb_parse_args', 'presso_filter_bbp_breadcrumb' );
if ( ! function_exists( 'presso_filter_bbp_breadcrumb' ) ) {
	function presso_filter_bbp_breadcrumb() {
		$my_args = array(
			'before' => '<div class="bbp-breadcrumb vw-header-font"><p>',
			'after' => '</p></div>',
		);

		$args = wp_parse_args( $my_args, $args );
		return $args;
	}
}