有三种方法可以修改。
通过.htaccess文件:
php_value upload_max_filesize 128M
php_value post_max_size 128M
php_value memory_limit 256M
//php_value max_excecution_time 300
//php_value max_input_time 300
通过wp-config.php文件:
@ini_set('upload_max_filesize','128M');
@ini_set('post_max_size','128M');
@ini_set('memory_limit','256M');
@ini_set('max_execution_time','300');
@ini_set('max_input_time','300');
通过插件:
https://import.wp-migration.com