我有一个问题,我为wp做了一个新的皮肤,从那以后,当我在我的帖子中放置和图像,并点击编辑图像徽标时,没有任何反应,它不会编辑它打开我的网站的图像弹出窗口。
我缺少什么?
答案 0 :(得分:1)
我有同样的问题,当我找到图像网址并根据firefox查看它“包含错误”。该错误似乎与空白相关,不知道它来自哪里,但我在输出图像之前遇到了添加ob_clean();
的建议,这对我有用。
编辑文件/wp-admin/includes/image-edit.php并在函数wp_stream_image()
中添加
在转换之前ob_clean();
?声明。在此之后加载的图像和编辑器似乎工作,万岁。
答案 1 :(得分:0)
解决了我的问题。我把ob_clean();在这个位置:
function wp_stream_image( $image, $mime_type, $post_id ) {
if ( $image instanceof WP_Image_Editor ) {
ob_clean();
/**
* Filters the WP_Image_Editor instance for the image to be streamed to the browser.
*
* @since 3.5.0