Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #54433, comment 3


Ignore:
Timestamp:
12/09/2021 11:32:05 PM (3 years ago)
Author:
johnbillion
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #54433, comment 3

    initial v1  
    99
    1010and my wp-content/themes/Avada/functions.php fiel contains
     11
     12{{{
    1113function my_custom_upload_mime_types( $mimes ) {
    1214$mimes['py'] = 'text/x-python';
     
    2022}
    2123add_filter( 'upload_mimes', 'my_custom_upload_mime_types' );
     24}}}
    2225
    2326the .wps extension (i.e WordPress Sucks) was added as it is the only way I found to upload linux binaries, by adding the .wps extension ...