新WP(3.3+)使用plupload,我们现在已将其完全集成到RW Meta Box.
示例
;放下
Plupload during upload-Status“loading/error”具有背景图像,以获得干净的UI
“上载的图像”标题仅在需要时显示
自定义可以在设置元框的过程中设置“标题字符串”标题(hndle bar)。
“拖放文件到此处”字符串可通过以下过滤器自定义:
function alter_drop_string( $string )
{
return __( \'drag & drop whatever here\', \'YOUR TEXTDOMAIN\' );
}
add_filter( \'rwmb_upload_drop_string\', \'alter_drop_string\' );
此过滤器更改所有多加载元框的字符串,因此您应该注意检查
$GLOBALS[\'hook_suffix\']
并为您的帖子/页面/CPT输出不同的字符串。