嗯,在与开发人员讨论之后,我在add\\u过滤器行中缺少了一些关键项。我需要传递“11”,“3”。这三个是这里的重要项目。它是要传递回的变量数。。。第三个是难以捉摸的imgID美元。
function massage_exif($content,$postID,$imgID){
$imgmeta = wp_get_attachment_metadata($imgID);
$width= $imgmeta[\'image_meta\'][\'width\'];
$height = $imgmeta[\'image_meta\'][\'height\'];
array_push($content,$height . \'x\' . $width);
return $content;
add_filter(\'exifography_display_exif\',\'massage_exif\',11,3);
谢谢你帮我一直挖到找到答案。