【wordpress】moreタグの『続きを読む』『 (さらに…) 』を消す方法

wordpressでmoreタグを使ったときに『続きを読む』や『 (さらに…) 』が表記されます。これを消したい場合は、記事内のthe_contentタグやget_the_contentタグに『”,FALSE,”』を入れると消えます。

<?php the_content(); ?>

↓↓↓

<?php the_content('',FALSE,''); ?>
get_the_content()

↓↓↓

get_the_content('',FALSE,'')

ちなみに、()の中に任意の文字を入れると、変更することも出来ますね。

get_the_content()

↓↓↓

get_the_content('続きを読む...')

参考:「続きを読む」のカスタマイズ

\ SHARE /