フォノクラフト株式会社:作業メモや備忘録など

作業メモや備忘録など…

[WP] 記事文中の特定の文字列を変換するメモ

without comments

使い道

既に投稿数が多く、リンクや<p>タグなどの混入を整形するのが厄介な場合などに有用

補足説明

変数に入れるので、the_content(); ではなく get_the_content(); を使う。文字列の変換は str_replace で。

ソース

<?php 
the_content(__('Read the rest of this entry &raquo;', 'kubrick'));
?>
を下記の様に変更
<?php
$content = get_the_content();
$content = str_replace("(置き換える前の文字列)", "(置き換えた後の文字列)", $content);//変換処理
$content = preg_replace("/\n/","<br />",$content);//改行の調整
echo $content;
?>