如何在 WordPress 帖子的段落之间添加更多空格?

发布于 2024-10-09 23:16:31 字数 80 浏览 6 评论 0原文

我的帖子段落之间有默认间距,但有没有办法在某些帖子中添加额外的空间?我尝试使用中断标签,但在单击保存后 wp 会删除。

提前致谢。

I have a default spacing between paragraphs on my posts but is there a way to add extra space in some posts? I tried using break tags but wp removes then after I click save.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

懒猫 2024-10-16 23:16:32

如果您在编辑器中进入 HTML 模式,您可以通过

<br>

对多行使用多个标签来插入空行。我不记得在 WordPress 中遇到过这个问题,它可能是基于你的主题?

If you go into HTML mode in the editor you can insert an empty line by putting in

<br>

Use multiple tags for multiple lines. I don't recall having this issue in Wordpress, it may be based on your theme?

謸气贵蔟 2024-10-16 23:16:32

尝试   这是粗体标签之间的不间断空格,这使 WP 认为有内容,因此会添加段落分隔符。

或者使用 nonautop 插件进行您自己的格式化:WordPress › NoAutoP « WordPress 插件

Try <b> </b> which is a nonbreaking space between bold tags, which makes WP think there is content so it will add a paragraph break.

Or use the nonautop plugin to do all your own formatting: WordPress › NoAutoP « WordPress Plugins

傾旎 2024-10-16 23:16:31

另一种方法是使用 CSS

在 HTML 编辑模式中添加类似这样的内容。

<p class="extra_space"> Some paragraph content here</p>

然后在主题中的 styles.css 中,

p.extra_space {
padding-top:15px;
}

您可以根据需要将填充/边距更改为尽可能多或尽可能少。

Another method would be using CSS

In the HTML edit mode add something like this.

<p class="extra_space"> Some paragraph content here</p>

then in styles.css in your theme

p.extra_space {
padding-top:15px;
}

You can change the padding/margin to as much or as little as you'd like.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文