Solution:
Using jquery in wordpress
The following code uses jquery approach to solve your problem:
jquery
jQuery(document).ready($ => { $('input[type=file]').each(function(){ $(this).attr('accept', 'image/*'); }); })