the_content(); の中身を書き換える
// the_content(); の中身取得と出力変更
function postjack($the_content) {
$content = get_the_content();
if( strstr($content, 'hoge') ) {
} else {
}
return $content;
}
add_filter('the_content','postjack');
// the_content(); の中身取得と出力変更
function postjack($the_content) {
$content = get_the_content();
if( strstr($content, 'hoge') ) {
} else {
}
return $content;
}
add_filter('the_content','postjack');