This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function conditional_buddypress_styles_scripts() { | |
// First check that buddypress exists to prevent fatal errors | |
if ( function_exists( 'is_buddypress' ) ) { | |
//dequeue scripts and styles | |
if ( ! is_buddypress() ) { | |
wp_dequeue_style( 'bp-mentions-css' ); | |
wp_dequeue_style( 'bp-legacy-css' ); | |
wp_dequeue_script( 'bp-confirm' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function conditional_bbpress_styles_scripts() { | |
// First check that bbpress exists to prevent fatal errors | |
if ( function_exists( 'is_bbpress' ) ) { | |
//dequeue scripts and styles | |
if ( ! is_bbpress() && ! is_buddypress() ) { | |
wp_dequeue_style('bbp-default'); | |
wp_dequeue_style( 'bbp_private_replies_style'); | |
wp_dequeue_script('bbpress-editor'); | |
} |