Changes between Initial Version and Version 1 of Ticket #54433, comment 3
- Timestamp:
- 12/09/2021 11:32:05 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #54433, comment 3
initial v1 9 9 10 10 and my wp-content/themes/Avada/functions.php fiel contains 11 12 {{{ 11 13 function my_custom_upload_mime_types( $mimes ) { 12 14 $mimes['py'] = 'text/x-python'; … … 20 22 } 21 23 add_filter( 'upload_mimes', 'my_custom_upload_mime_types' ); 24 }}} 22 25 23 26 the .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 ...