Skip to content

Instantly share code, notes, and snippets.

@shengoo
Last active November 8, 2016 09:01
Show Gist options
  • Save shengoo/6423317b8a53a76d684c8ad02a6fa951 to your computer and use it in GitHub Desktop.
Save shengoo/6423317b8a53a76d684c8ad02a6fa951 to your computer and use it in GitHub Desktop.
remove devicepx from wordpress

add the following to your theme’s functions.php file:

function remove_devicepx() {
    wp_dequeue_script( 'devicepx' );
}
add_action( 'wp_enqueue_scripts', 'remove_devicepx' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment