Skip to content

Instantly share code, notes, and snippets.

@MaximeCulea
Created April 3, 2020 10:05
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 MaximeCulea/27f36c41381eb15f177a571644606a70 to your computer and use it in GitHub Desktop.
Save MaximeCulea/27f36c41381eb15f177a571644606a70 to your computer and use it in GitHub Desktop.
Allow to download a lang despite DISALLOW_FILE_MODS to true
<?php
/**
* Allow to download a lang despite DISALLOW_FILE_MODS to true
* @author Maxime Culea
*/
add_filter( 'file_mod_allowed', function ( $value, $context ) {
if ( $context == 'can_install_language_pack' ) {
return true;
}
return $value;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment