我是WordPress的新手,想知道如何设置文本限制或中断,以便当文本长度达到某个数字时,它不会仅在一行中继续显示并移至下一行。
例如我如何制作此文字:
this is an example text for demonstrating line break
对此:
this is an example text for
demonstrating line break
您能帮我自动实现换行吗?谢谢。
答案 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.