【发布时间】:2016-02-27 16:49:41
【问题描述】:
我有这段代码,它之前可以工作,但最近它停止工作,不知道为什么。
function addclassfeaturedimage($attr) {
remove_filter('wp_get_attachment_image_attributes','addclassfeaturedimage');
$attr['class'] .= get_the_ID() ;
return $attr;
}
add_filter('wp_get_attachment_image_attributes','addclassfeaturedimage');
在工作时,它会将帖子 ID 添加到附件图像类中。
有什么想法吗?
【问题讨论】:
标签: wordpress function filter attachment attr