diff --git a/wp-admin/includes/options.php b/wp-admin/includes/options.php index a085a4ad5c..6b8114d571 100644 --- a/wp-admin/includes/options.php +++ b/wp-admin/includes/options.php @@ -100,8 +100,8 @@ jQuery(document).ready(function() { return; jQuery('#permalink_structure').val( this.value ); }); - jQuery('#permalink_structure').focus(function() { - jQuery("#custom_selection").attr('checked', 'checked'); + jQuery( '#permalink_structure' ).on( 'click input', function() { + jQuery( '#custom_selection' ).prop( 'checked', true ); }); });