Media library quick/inline edit

As an alternative to the List View, you can use the Grid View by clicking the icon with 4 squares at the top of the Media Library when viewing all items. When clicking on an item, a modal will appear. It has navigation arrows at the top to left you quickly navigate items. Edits are … Read more

It is possible to add custom media size in admin media edit?

add_image_size( ‘medium-something’, 480, 480 ); // Register the useful image size for use in Add Media modal add_filter( ‘image_size_names_choose’, ‘your_custom_sizes’ ); function your_custom_sizes( $sizes ) { return array_merge( $sizes, array( ‘medium-something’ => __( ‘Medium Something’ ), ) ); } Be aware that if the size does not already exist for an image, it will not … Read more