我的一个过滤器正在破坏一个插件,该插件可以为类别启用特色图像。代码如下:
function html5_insert_image($html, $id, $caption, $title, $align, $url, $size, $alt) {
if (!$caption) {
$src = wp_get_attachment_image_src( $id, $size, false );
$html5 = "<figure id=\'post-$id media-$id\' class=\'photoswipe align$align\'>";
if ($url) { $html5 .= \'<a href="\'.$url.\'">\'; }
$html5 .= \'<img src="\'.$src[0].\'" class="image" width="\'.$src[1].\'" height="\'.$src[2].\'" \';
if ($alt) { $html5 .= \'alt="\'.$alt.\'" \'; }
$html5 .= \'/>\';
if ($url) { $html5 .= \'</a>\'; }
$html5 .= "</figure>";
return $html5;
} else {
return $html;
}
}
add_filter( \'image_send_to_editor\', \'html5_insert_image\', 10, 9 );
当用户位于“管理”面板的“类别管理”页面上时,是否有一种简单的方法可以完全禁用此过滤器?