gpt4 book ai didi

php - 是否可以更改 wordpress 在帖子中添加时显示图像的方式?

转载 作者:行者123 更新时间:2023-11-28 15:45:06 25 4
gpt4 key购买 nike

当我遇到一个问题时,我开始使用 Bootstrap 制作一个新的 WordPress 主题。

我发现,当我创建一个顶部有一些文本和图像(左对齐)的新帖子时,图像实际上没有对齐。图片位于左上角,文字位于其下方。

我在 Google 上搜索并阅读了博客文章等。大多数人建议在 style.css 中添加一些样式来对齐文本。

例子:

img.alignright { float: right; margin: 0 0 1em 1em; }
img.alignleft { float: left; margin: 0 1em 1em 0; }
img.aligncenter { display: block; margin-left: auto; margin-right: auto; }

当然,这种方法对我不起作用,所以我检查了一下,我认为问题是因为这些类仅在应用于图像标签时才起作用。当访问 the_content() 函数时,图像打印在 div 标签内。

<div id="attachment_66" style="width: 310px" class="wp-caption alignleft">
<img class="size-medium wp-image-66" src="path/to/img" alt="Sphere" width="300" height="169" sizes="(max-width: 300px) 100vw, 300px">
<p class="wp-caption-text">Who doesn’t like spheres?</p>
</div>

如果问题真的是因为这些标签,我怎样才能让对齐类应用于 img 而不是 div 标签?

这是它的样子。 enter image description here

最佳答案

感谢@Andrei Gheorghiu,我设法解决了这个问题,我将回答我的问题。

预制的 WordPress 主题有一些我没有包含的 css。

所以,这就是您需要在 style.css 中包含的内容

.alignleft { float:left;}
.alignright { float:right;}
.aligncenter { display: block; margin: auto; }

关于php - 是否可以更改 wordpress 在帖子中添加时显示图像的方式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42889343/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com