操作帖子内容中的图像

时间:2017-04-04 作者:projectIncomplete

我已经接管了Wordpress网站的维护工作。我的前任创建了一个自定义的“image\\u send\\u to\\u editor”函数,用于将图像添加到帖子中。以这种方式添加的所有图像都是“完整”大小且没有响应(无srcset)。

我需要一些方法来解决这个问题。所有图像的大小都应为“大”,并具有srcset属性。

我已经删除了自定义的“image\\u send\\u to\\u editor”功能,所以新图像就可以了。

对image\\u send\\u to\\u editor函数的输出进行编码:

<a class="lightBox" href="https://mydomain/image-1-1.jpg"     rel="attachment op-att-5784" data-relation="group">
<img class="op-att-5784" src="https://mydomain/image-1-1.jpg" alt="image alt text" width="1280" height="720" data-headline="" data-description="" />
</a>
image\\u send\\u to\\u编辑器只是为图像创建html代码,然后将其添加到帖子中,然后将帖子存储在数据库中。

1 个回复
SO网友:projectIncomplete

由于旧的image\\u send\\u to\\u editor函数没有包含具有图像ID的wp-image-xxxxx类,因此我们必须进行数据库查询以找到给定图像的正确ID。

对每个图像进行数据库查询似乎不是一个好主意。

唯一真正的解决方案是手动删除图像并将其重新添加到帖子中。

相关推荐

Even/Odd every two posts

我需要每两篇文章显示一个不同的布局,是否可以使用偶数/奇数来实现这一点?<?php while (have_posts()): the_post() ?> <?php if ($wp_query->current_post % 2 == 0): ?> even <?php else: ?> odd <?php endif ?> <?php endwhile