File "UserExperience_OEmbed_Extension.php"
Full Path: /home/mba/public_html/wp-content-20250807152928/plugins/w3-total-cache/UserExperience_OEmbed_Extension.php
File size: 284 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace W3TC;
class UserExperience_OEmbed_Extension {
public function run() {
add_action( 'wp_footer', array( $this, 'wp_footer' ) );
}
public function wp_footer() {
wp_deregister_script( 'wp-embed' );
}
}
$o = new UserExperience_OEmbed_Extension();
$o->run();