HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/ippmt.kauko.lt/wp-content/themes/oceanwp/inc/third/class-buddypress.php
<?php
/**
 * BuddyPress class
 *
 * @package OceanWP WordPress theme
 */

// If BuddyPress plugins doesn't exist then return.
if ( ! class_exists( 'BuddyPress' ) ) {
	return;
}

if ( ! class_exists( 'OceanWP_BuddyPress' ) ) :

	class OceanWP_BuddyPress {

		/**
		 * Setup class.
		 *
		 * @since 1.4.0
		 */
		public function __construct() {
			add_action( 'wp_enqueue_scripts', array( $this, 'add_custom_css' ) );
		}

		/**
		 * Load custom CSS file
		 *
		 * @since 1.4.3
		 */
		public static function add_custom_css() {
			wp_enqueue_style( 'oceanwp-buddypress', OCEANWP_CSS_DIR_URI .'third/buddypress.min.css' );
		}

	}

endif;

return new OceanWP_BuddyPress();