假设我interpreting your Question correctly...
新媒体上载程序中显示的缩略图已经是medium
大小的,被限制在飞行中。
所以,这是一个应用一些CSS样式来增加其大小的问题。也许其他风格的调整是必要的,这只是一个概念的证明。
add_action( \'admin_head-post-new.php\', \'style_thumbnails_wpse_81677\' );
add_action( \'admin_head-post.php\', \'style_thumbnails_wpse_81677\' );
function style_thumbnails_wpse_81677()
{
$thumb_width = get_option( \'medium_size_w\' );
$thumb_height = get_option( \'medium_size_h\' );
echo "
<style type=\'text/css\'>
.details.attachment, .attachement, .attachment.save-ready {
width:{$thumb_width}px !important;
}
.attachment-preview, .attachment-preview .thumbnail {
width: {$thumb_width}px !important;
height: {$thumb_height}px !important;
}
.portrait .thumbnail img, .landscape .thumbnail img {
max-width: {$thumb_width}px !important;
max-height: {$thumb_height}px !important;
}
</style>
";
}
Result: