歡迎光臨, 訪客. 請先 登入註冊一個帳號.
五月 04, 2024, 04:01:31 上午
19595 文章 在 3865 主題 由 4580 會員
最新註冊會員: aa123aa1
  列出文章
頁: [1]
1  支援 / 安裝與設定 / 如何讓 RSS 只顯示文章的內文部分,而不要顯示延伸內文? 於: 九月 11, 2005, 11:17:23 下午
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 還是包含會整篇文章。請問該如何修改才對?謝謝!

頁: [1]