0byt3m1n1
Path:
/
var
/
www
/
clients
/
client38
/
web37
/
web
/
wp-content
/
plugins
/
us-core
/
plugins-support
/
[
Home
]
File: bbpress.php
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' ); /** * bbPress Support * * @link https://bbpress.org/ */ if ( ! class_exists( 'bbPress' ) ) { return; } add_action( 'wp_enqueue_scripts', 'us_bbpress_enqueue_styles', 14 ); function us_bbpress_enqueue_styles( $styles ) { global $us_template_directory_uri; wp_dequeue_style( 'bbp-default' ); $min_ext = defined( 'US_DEV' ) ? '' : '.min'; if ( defined( 'US_DEV' ) OR ! us_get_option( 'optimize_assets', 0 ) ) { wp_enqueue_style( 'us-bbpress', $us_template_directory_uri . '/common/css/plugins/bbpress' . $min_ext . '.css', array(), US_THEMEVERSION, 'all' ); } } // Remove Forum summaries add_filter( 'bbp_get_single_forum_description', '__return_false', 10, 2 ); add_filter( 'bbp_get_single_topic_description', '__return_false', 10, 2 ); // Adding BBPress post type support in grids for regular visitors on front if ( function_exists( 'bbp_get_forum_post_type' ) AND function_exists( 'bbp_get_forum_post_type_labels' ) ) { add_filter( 'us_grid_available_post_types', 'us_add_forums_to_grid_available_post_types' ); function us_add_forums_to_grid_available_post_types( $posts_types ) { $post_type = bbp_get_forum_post_type(); if ( ! isset( $posts_types[ $post_type ] ) ) { $labels = bbp_get_forum_post_type_labels(); $posts_types[ $post_type ] = $labels['name'] . ' (' . $post_type . ')'; } return $posts_types; } }