/
home
/
rekodeb
/
osteo
/
wp-content
/
themes
/
zuperla
/
includes
/
Upload File
HOME
<?php /* * bbPress helper functions and configuration * * @version 1.0 * @author Euthemians Team * @URI http://euthemians.com */ /** * Helper function to check if bbPress is enabled */ function zuperla_eutf_bbpress_enabled() { if ( class_exists( 'bbPress' ) ) { return true; } return false; } function zuperla_eutf_is_bbpress() { if ( zuperla_eutf_bbpress_enabled() && is_bbpress() ) { return true; } return false; } //If woocomerce plugin is not enabled return if ( !zuperla_eutf_bbpress_enabled() ) { return false; } /** * De-register bbPress styles */ add_filter( 'bbp_default_styles', 'zuperla_eutf_bbpress_deregister_styles', 10, 1 ); function zuperla_eutf_bbpress_deregister_styles( $styles ) { return array(); } /** * Register custom bbPress styles */ if( !is_admin() ) { add_action('bbp_enqueue_scripts', 'zuperla_eutf_bbpress_register_styles', 15 ); } function zuperla_eutf_bbpress_register_styles() { wp_enqueue_style( 'zuperla-eutf-bbpress-general', get_template_directory_uri() . '/css/bbpress.css', array(), '1.0.0', 'all' ); } //Omit closing PHP tag to avoid accidental whitespace output errors.