the_content

スポンサーリンク
WordPress

[WordPress]the_contentの中のテキストを置換する

<?php $content = get_the_content(); $content = str_replace("置換前の文字列", "置換後の文字列", $content); echo $content; ?>
スポンサーリンク