Skip to content

Instantly share code, notes, and snippets.

@Frique
Created January 13, 2019 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Frique/070d5517047051f2def2f54106661104 to your computer and use it in GitHub Desktop.
Save Frique/070d5517047051f2def2f54106661104 to your computer and use it in GitHub Desktop.
Clientside: conditionally disable admin theming
add_filter( 'clientside-is-themed', function( $bool ) {
if ( $_GET['page'] === 'my-admin-page' ) {
$bool = false;
}
return $bool;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment