One of the biggest problems of WordPress users is the file size limit, for example, the standard max limit visual size is 2MB by default, but you have to change it. In your article, you want to take a photo you took in its original form, even a normal phone's photo output is around 5mb. You cannot use it without rendering. Then you can remove this limit by the following method.
Removing the WordPress image upload limit
To do this, first enter your hosting package. Enter the file manager. Find and back up your htaccess file here. Then edit it.
Add the following codes to the end of the file.
#Change upload limits php_value memory_limit 50M php_value post_max_size 50M php_value upload_max_filesize 50M php_value max_execution_time 900 #Change upload limits end
With these codes, exit WordPress admin panel and re-enter. Then try to upload a high-size image to an article. With this change, you can upload files up to 50mb.