mirror of
https://gh.wpcy.net/https://github.com/mainwp/mainwp-custom-dashboard-extension-examples.git
synced 2026-05-27 14:33:57 +08:00
7 lines
231 B
PHP
7 lines
231 B
PHP
<?php
|
|
|
|
add_filter('mainwp_file_uploader_allowed_file_types', 'mycustom_mainwp_file_uploader_allowed_file_types');
|
|
function mycustom_mainwp_file_uploader_allowed_file_types( $types ) {
|
|
$types[] = 'htaccess';
|
|
return $types;
|
|
}
|