如何在 WordPress 帖子的段落之间添加更多空格?
我的帖子段落之间有默认间距,但有没有办法在某些帖子中添加额外的空间?我尝试使用中断标签,但在单击保存后 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您在编辑器中进入 HTML 模式,您可以通过
对多行使用多个标签来插入空行。我不记得在 WordPress 中遇到过这个问题,它可能是基于你的主题?
If you go into HTML mode in the editor you can insert an empty line by putting in
Use multiple tags for multiple lines. I don't recall having this issue in Wordpress, it may be based on your theme?
尝试
这是粗体标签之间的不间断空格,这使 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
另一种方法是使用 CSS
在 HTML 编辑模式中添加类似这样的内容。
然后在主题中的 styles.css 中,
您可以根据需要将填充/边距更改为尽可能多或尽可能少。
Another method would be using CSS
In the HTML edit mode add something like this.
then in styles.css in your theme
You can change the padding/margin to as much or as little as you'd like.