Recent Posts
Online Members

 No online members at the moment

Notifications
Clear all

Option 1: Enable via functions.php


azmanagedit
(@azmanagedit)
Member Admin
Joined: 1 year ago
Posts: 88
Topic starter  

You can add a snippet of code to your theme's functions.php file to allow .doc and .docx uploads:

function allow_doc_docx_uploads( $mime_types ) {
    $mime_types['doc']  = 'application/msword';       // Allow .doc files
    $mime_types['docx'] = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'; // Allow .docx files
    return $mime_types;
}
add_filter( 'upload_mimes', 'allow_doc_docx_uploads' );

   
Quote
Share:

AZ Managed
IT Services llc

Contact us today to request a consultation and discover how our expert solutions can help your business thrive.