Re: [解決済み] single.php での the_content
フォーラム › 使い方全般 › [解決済み] single.php での the_content › Re: [解決済み] single.php での the_content
2011年1月25日 9:55 AM
#61347
fupaff
参加者
nanbuさま
こんばんは。
ご回答ありがとうございます。
ご教示いただいた関数 wpautop と以下の記事から
https://www.welcart.com/forum/topic.php?id=349
https://www.welcart.com/community/archives/1697
function.php 内に
add_filter('usces_filter_itemPage','my_usces_filter_itemPage', 10);
function my_usces_filter_itemPage(){
$html = wpautop(get_the_content());
return $html;
}
と記述し、解決致しました。
本当にありがとうございました。
ただ、今回、関数 filter_itemPage を見てみると、最初のコミュニティー内の記事にある通り、is_singluar が 偽の場合のみフィルターを通ることが理解できたのですが、そのように動いていないのでは?と疑問に思いました。
is_single も真でしたし、the_content の直前に、ar_dump($post)で post_mine_type を調べましたが、値は、’item’となっていました。
もし、お時間がありましたら、
この点についてお答えいただければ幸いです。
失礼致します。