WordPressでティッカー的なモノをつくったり、改行が邪魔なシーンにこれ。
ereg_replaceはphp5.3から非推奨だそうで。
<?php //contentから改行を削除
$content = get_the_content();
$content=preg_replace(“/\n+/”, “\n”, $content);
echo $content;
?>
for the sophisticated people
WordPressでティッカー的なモノをつくったり、改行が邪魔なシーンにこれ。
ereg_replaceはphp5.3から非推奨だそうで。
<?php //contentから改行を削除
$content = get_the_content();
$content=preg_replace(“/\n+/”, “\n”, $content);
echo $content;
?>