Re: [解決済み] single.php での the_content
フォーラム › 使い方全般 › [解決済み] single.php での the_content › Re: [解決済み] single.php での the_content
2011年1月26日 2:11 AM
#61348
nanbu
キーマスター
こんにちは。
コミュニティーのその記事はトップページについて説明していますので、single.php で扱うページとは状況が違ってきます。
filter_itemPage($content) はincludes/default_filters.php で設定しており、全てのthe_content に対してフックされます。
しかし、filter_itemPage($content) を見ていただくと分かる通り、ここでは
if( ($post->post_mime_type != 'item' || !is_single()) ) return $content;
としていますので、完全に商品詳細ページのみが対象となります。
商品詳細ページは、is_single は真であり、post_mine_type は’item’で間違いないのです。