Skip to content

Instantly share code, notes, and snippets.

@mohsinrasool
Created December 23, 2014 18:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mohsinrasool/1ab5430fab097eb5863b to your computer and use it in GitHub Desktop.
Save mohsinrasool/1ab5430fab097eb5863b to your computer and use it in GitHub Desktop.
Enable the "Minor edit - dont'update translation" by WPML checkbox by default on post editing screen
/**
* Javascript added in admin screens
* 1. Enable the "Minor edit - dont'update translation" by WPML checkbox by default on post editing screen
*
* @return void
* @author mohsinrasool
**/
add_action('admin_footer', 'mr_admin_footer');
function mr_admin_footer()
{
global $pagenow;
// $screen = get_current_screen();
if ( $pagenow == 'post.php' ) {
// 1. Enable the "Minor edit - dont'update translation" by WPML checkbox by default on post editing screen
?>
<script type="text/javascript">
jQuery('input[name="icl_minor_edit"]').attr('checked','checked');
</script>
<?php
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment