Skip to content

Instantly share code, notes, and snippets.

@bdeleasa
Created September 9, 2015 12:43
Show Gist options
  • Select an option

  • Save bdeleasa/e6145fe7dd4a1c08c78c to your computer and use it in GitHub Desktop.

Select an option

Save bdeleasa/e6145fe7dd4a1c08c78c to your computer and use it in GitHub Desktop.
Fixes an issue with Wordpress 4.3 doing some funky things in Chrome.
<?php
add_action('admin_enqueue_scripts', 'hudsonawning_chrome_fix');
/**
* Fixes an issue with the admin menu doing funky things in Chrome.
* It's rather annoying.
*
* @param none
* @return none
*/
function hudsonawning_chrome_fix() {
if ( strpos( $_SERVER['HTTP_USER_AGENT'], 'Chrome' ) !== false ) {
wp_add_inline_style( 'wp-admin', '#adminmenu { transform: translateZ(0); }' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment