A snippet after every image 时间:2016-05-30 作者:Daniel Costa 各位。我需要把一段代码后,每个职位的形象(后附图片)。是这样的:<img class="alignnone size-full wp-image-3079" src="imgurl.jpg" alt="02" width="2592" height="1936"> <div>some piece of code here</div> 它将是一个共享按钮来共享图像而不是帖子,因此每个图像都需要一个自定义代码来共享图像url。有办法吗? 1 个回复 最合适的回答,由SO网友:dan9vu 整理而成 尝试get_image_tag 过滤器:add_filter(\'get_image_tag\', function($html, $id, $alt, $title, $align, $size) { return $html . \'<div>some piece of code here</div>\'; }, 10, 6); References:get_image_tag()get_image_send_to_editor()wp_ajax_send_attachment_to_editor() 文章导航