pLog產生的RSS都是包含整篇文章,這樣很長又佔空間。我試著把 ./class/action/rssaction.class.php 做以下修改:
(加上 // 的部分)
$postText = $article->getIntroText();
// $postExtendedText = $article->getExtendedText();
$pm->notifyEvent( EVENT_TEXT_FILTER, Array( "text" => &$postText ));
// $pm->notifyEvent( EVENT_TEXT_FILTER, Array( "text" => &$postExtendedText ));
$article->setIntroText( $postText );
// $article->setExtendedText( $postExtendedText );
array_push( $articles, $article );
可是無效,RSS 還是包含會整篇文章。請問該如何修改才對?謝謝!