1
不記得曾經見過這個 - 也似乎無法找到類似的問題,所以在這裏...爲什麼一個WordPress的RSS提要的描述僅限於346個字符?
我有一個關於WordPress的博客設置。很棒。我從它拉動RSS2飼料。也很好。然而,當我遍歷飼料樣式它的頁面的輸出,我發現「說明」節點被截斷至346個字符,「[...]
」被添加到年底。
我不這樣做,在我的代碼的任何地方。所以我試圖找到原因。
這裏是表示在進料迴路中的片段:
foreach ($rss->getElementsByTagName('item') as $node) {
$item = array (
'title' => $node->getElementsByTagName('title')->item(0)->nodeValue,
'desc' => trim($node->getElementsByTagName('description')->item(0)->nodeValue),
'link' => $node->getElementsByTagName('link')->item(0)->nodeValue,
'date' => $node->getElementsByTagName('pubDate')->item(0)->nodeValue,
'postid' => $node->getElementsByTagName('guid')->item(0)->nodeValue,
'category' => $node->getElementsByTagName('category')->item(0)->nodeValue
);
echo $node->getElementsByTagName('description')->item(0)->nodeValue;
array_push($feed, $item);
回波你見上文僅346個字符輸出,並且添加「[...]
」,以結束..像這樣:
Every day 22 million Americans suffer from uncomfortable acid reflux, according to the International Foundation of Functional Gastrointestinal Disorders. While many people may reach for medications like Proton Pump Inhibitors (PPIs) to provide relief from the effects of acid reflux, a new study from researchers at Kaiser Permanente may leave acid reflux sufferers reconsidering their […]
然而..當我在看什麼是真正從進料未來,它顯示了後..沒有限制的全部文本。 (僅供參考..我加了裝飾功能,做你所期望的正是 - 。以消除任何開頭或結尾的空格當我刪除它..沒有區別)
所以..任何人有什麼想法我錯過了?
TTAIA
嗯..無人問津? –