diff --git a/functions.php b/functions.php index 05ba701af..591819adf 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"];