I have created a wordpress media uploader using the code below however this only seems to allow only images. How can I modify this to accept document files such as PDF or Word documents?
file_frame = wp.media.frames.file_frame = wp.media({
title: $( this ).data( 'uploader_title' ),
frame: 'select',
button: {
text: $( this ).data( 'uploader_button_text' ),
},
multiple: false // set this to true for multiple file selection
});
You assistance is highly appreciated.