Skip to content

Instantly share code, notes, and snippets.

@illucent
Created December 7, 2015 17:27
Show Gist options
  • Save illucent/7cde200e4eb3a81c1267 to your computer and use it in GitHub Desktop.
Save illucent/7cde200e4eb3a81c1267 to your computer and use it in GitHub Desktop.
`wp_add_inline_style` example
<?php
add_action( 'admin_enqueue_scripts', 'prefix_admin_enqueue_scripts' );
/**
* Print inline admin style.
*/
function prefix_admin_enqueue_scripts() {
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