高级自定义字段中未定义TB_SHOW

时间:2013-06-20 作者:Tahmina Akter

我正在使用插件:高级自定义字段。对于更多的图像,我使用它使用图像输入字段添加图像。

现在,当我编辑帖子时,我无法使用插件在图像字段中编辑/添加新图像。使用Firebug,它显示js 错误:

未捕获引用错误:未定义tb\\U show

但当我使用这些字段添加新图像时,相同的字段也会起作用。

1 个回复
SO网友:Adiono

您是否也添加了wp_enqueue_script(\'media-upload\') 在函数中。php?

我试过这个,效果很好:

function load_admin_things() {
    wp_enqueue_script(\'media-upload\');
    wp_enqueue_script(\'thickbox\');
    wp_enqueue_style(\'thickbox\');
}

add_action( \'admin_enqueue_scripts\', \'load_admin_things\' );

结束

相关推荐

Displaying oEmbed errors?

有时,通过oEmbed嵌入项目是不可能的,例如,当YouTube视频已禁用嵌入时。The oEmbed service will return a 401 Unauthorized, 并且不会转换代码。有没有办法通知用户这一点?当前的工作流是非直观的(至少对我来说),我更喜欢在WordPress页面上,或者更好的是,在编辑器中显示一条消息,说明对象无法嵌入。