I noticed the default wp-embed loads on every page by default, I'd like to only load it on single.php and the forum pages (so wpForo Embeds works correctly). I have this in my functions.php file but it's not working:
//Disable WP-Embed Unless Single or Forums
if ( !is_single() && !is_page('community') ) {
function deregister_wpembed_script(){
wp_deregister_script('wp-embed');}
add_action( 'wp_footer', 'deregister_wpembed_script');
}