WordPress 在每个短代码后强制换行。怎么修?
WordPress forces a line break after each shortcode. How to fix?
我就是想不通。 Wordpress 似乎在每个短代码的末尾添加了一个 br 标签。我正在尝试做的是以下内容:
This deal is posted on [shortcode] and is available via [shortcode]
Wordpress 的实际作用:
This deal is posted on [shortcode]
and is available via [shortcode]
这是我用 custom field 制作的简码。我填写了一个特定的表格,简码会吐出我在该表格中填写的任何内容。
如果您选中 this link,显示“Aanbieding geldig bij: Amazon.nl”3 次的文本应该显示在一行中。 “Amazon.nl”由简码显示。
我该怎么做才能让它在简码后不换行?
符合你的风格rh-flex-center-align
改为
.rh-flex-center-align{
display:inline-flex;
}
或者,如果您不能这样做,请在通过短代码生成的元素上插入内联样式
<div class="rh-flex-center-align" style="display: inline-flex;">
<span class="meta_v_label mr5 rtlml5">Aanbieding geldig bij: </span> Amazon.nl
</div>
我就是想不通。 Wordpress 似乎在每个短代码的末尾添加了一个 br 标签。我正在尝试做的是以下内容:
This deal is posted on [shortcode] and is available via [shortcode]
Wordpress 的实际作用:
This deal is posted on [shortcode]
and is available via [shortcode]
这是我用 custom field 制作的简码。我填写了一个特定的表格,简码会吐出我在该表格中填写的任何内容。 如果您选中 this link,显示“Aanbieding geldig bij: Amazon.nl”3 次的文本应该显示在一行中。 “Amazon.nl”由简码显示。
我该怎么做才能让它在简码后不换行?
符合你的风格rh-flex-center-align
改为
.rh-flex-center-align{
display:inline-flex;
}
或者,如果您不能这样做,请在通过短代码生成的元素上插入内联样式
<div class="rh-flex-center-align" style="display: inline-flex;">
<span class="meta_v_label mr5 rtlml5">Aanbieding geldig bij: </span> Amazon.nl
</div>