functions.php
function filter_notation( $content) { return str_replace("hello","こんちは",$content); } add_filter( 'the_meta_key', 'filter_notation' );
ワードプレスをカスタマイズしよう
functions.php
function filter_notation( $content) { return str_replace("hello","こんちは",$content); } add_filter( 'the_meta_key', 'filter_notation' );