summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php3
1 files changed, 2 insertions, 1 deletions
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"];