在div中自动换行开机自检图像

时间:2011-06-25 作者:Giraldi

关于插入帖子的图像附件,我想将img a内的标签div 用于特定设计目的的标签。

有没有办法做到这一点automatically 附加图像文件后,例如通过挂钩/过滤器,可能?

提前感谢!!

2 个回复
最合适的回答,由SO网友:onetrickpony 整理而成

这是image_send_to_editor 过滤器:

if(is_admin()){

  add_filter(\'image_send_to_editor\', \'wrap_my_div\', 10, 8);

  function wrap_my_div($html, $id, $caption, $title, $align, $url, $size, $alt){
    return \'<div class="mydiv" id="mydiv-\'.$id.\'">\'.$html.\'</div>\';
  }
}
对于现有图像/帖子,您可以在下面的函数中尝试正则表达式

SO网友:MartinJJ

虽然没有研究挂钩和过滤器,但仅通过css就可以轻松实现。

使用2010 themeclass="entry-content" 作为css选择器

在样式表中使用:

.entry-content img {  
/* do all your funky css attributes for the image in here */  
}  

结束