Note: 您不应该删除任何默认图像,因为它们在整个WordPress管理中都被高度使用。例如,在媒体库页面上,所有这些图像块在技术上都是按比例缩小的“中等”大小的图像。如果单击图像,如果可能,它将显示“大”图像。否则,这些默认值将显示缩小的“完整”图像,这会真正减慢媒体库和在后期编辑器中选择/编辑图像的过程。
TL;DR 删除默认图像大小可能会产生不利影响,并降低某些区域的速度。
WordPress将这些字段设置为静态字段,因此无法轻松删除这些字段,它们是硬编码到表中的。我们可以做的下一件最好的事情是使用CSS隐藏它们,我将在下面展示。以下代码可以放置在functions.php
文件:
/**
* Custom Admin Styles
*
* @return void
*/
function wpse279908_admin_print_styles() {
$screen = get_current_screen();
// Media Options Page Only
if( \'options-media\' !== $screen->id ) {
return;
}
?>
<style>
#wpbody-content form > table:first-of-type tr:nth-of-type( 2 ),
#wpbody-content form > table:first-of-type tr:nth-of-type( 3 ) {display: none;}
</style>
<?php
}
add_action( \'admin_print_styles\', \'wpse279908_admin_print_styles\' );