在WordPress中,如何设置文本限制或当文本达到一定长度时将其破坏

时间:2019-06-02 09:24:35

标签: html wordpress

我是WordPress的新手,想知道如何设置文本限制或中断,以便当文本长度达到某个数字时,它不会仅在一行中继续显示并移至下一行。

例如我如何制作此文字:

this is an example text for demonstrating line break

对此:

this is an example text for

demonstrating line break 

您能帮我自动实现换行吗?谢谢。

1 个答案:

答案 0 :(得分:0)

您可以使用php wordpwrap实现此目的:

<?php
$text = "Portez ce vieux whisky au juge blond qui fume.";
$newtext = wordwrap($text, 20, "<br />\n");

echo $newtext;
?>

会显示:

Portez ce vieux<br />
whisky au juge<br />
blond qui fume.

https://www.php.net/manual/en/function.wordwrap.php