ありがとうございます。
functions.phpを見る限り、the_excerptではないようでした。
add_filter(‘the_content’, ‘remove_shortcode_from_index’,99);
こちらも試してみましたが、やはりトップ画面にはギャラリーショートコードが表示されたままです・・・。
nobitaさん、返信ありがとうございます。
基本的なところがわからなくて恐縮なんですが・・・下記の方法で合ってますでしょうか?
①以下をfunctions.phpに適用
function remove_shortcode_from_index($content) {
if ( is_home() ) {
$content = strip_shortcodes( $content );
}
return $content;
}
add_filter(‘the_content’, ‘remove_shortcode_from_index’);
②以下をテーマのindex.phpに適用
<?php strip_shortcodes( $content ); ?>
試してみたんですけど、ショートコードがトップ画面に反映されたままです。
どうしたらうまく行くのか教えていただけませんか?
ちなみにサイトはこちらです。
http://photowise.main.jp
stranger-jpさん、ご指摘の通り修正したら復旧できました!!
素晴らしいです。本当にありがとうございました。(^^)