remove add media button wordpress editor

Go to your WordPress admin dashboard Click on Appearance and select Theme Editor Select the functions.php file from the right-hand side Add the following code at the end of the file and click on Update File.

function remove_media_button() { remove_action('media_buttons', 'media_buttons'); } add_action('admin_head', 'remove_media_button');