我想在以下echo语句中给出一个换行符。
<?php
/**
* Show the reply and apply the formatting function on the content
*/
echo wpautop( wp_kses_post( $row->post_content ) );
我试图使用&#34; \ n&#34;和回声开始时如:
<?php
/**
* Show the reply and apply the formatting function on the content
*/
echo "\n"wpautop( wp_kses_post( $row->post_content ) );
但在此之后页面无法加载。
有人可以提出建议吗?
提前谢谢。
答案 0 :(得分:0)
尝试一下:
<?php
/* Show the reply and apply the formatting function on the content */
echo '<br>' . wpautop( wp_kses_post( $row->post_content ) );
?>
答案 1 :(得分:0)
<?php
/**
* Show the reply and apply the formatting function on the content
*/
echo "\n" . wpautop( wp_kses_post( $row->post_content ) );
您需要使用连接字符(点符号)。
\n
= unix linebreak,而不是html,使用<br>
进行html换行
答案 2 :(得分:0)
您忘记将字符串与DOT .
连接:
<?php
/*** Show the reply and apply the formatting function on the content***/
*/
echo "\n" . wpautop( wp_kses_post( $row->post_content ) );
?>