From 4af7a36aa7ccb72aa6f78fdb799d8b8eef0b358b Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 20 Feb 2008 06:43:41 +0100 Subject: [PATCH] simplepie: import entry content when possible, not just description (closes #192) --- functions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 05ba701a..591819ad 100644 --- a/functions.php +++ b/functions.php @@ -848,7 +848,8 @@ $entry_link = strip_tags($entry_link); if ($use_simplepie) { - $entry_content = $item->get_description(); + $entry_content = $item->get_content(); + if (!$entry_content) $entry_content = $item->get_description(); } else { $entry_content = $item["content:escaped"]; -- 2.39.5