[Plugin: WP-Lifestream2] Fix for Delicious Feeds
-
FYI – Delicious has updated their Feed URLs.
To fix the delicious feeds –
wp-lifestream2/extensions/delicious/extension.inc.php
change
function get_url()
from
$url = 'https://del.icio.us/rss/'.$this->get_option('username'); if ($this->get_option('filter_tag')) $url .= '/'.$this->get_option('filter_tag'); return $url;
to
$url = 'https://feeds.delicious.com/v2/rss/'.$this->get_option('username'); if ($this->get_option('filter_tag')) $url .= '/'.$this->get_option('filter_tag'); return $url;
and change
function get_public_url
from
return 'https://del.icio.us/'.$this->get_option('username');
to
return 'https://delicious.com/'.$this->get_option('username');
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘[Plugin: WP-Lifestream2] Fix for Delicious Feeds’ is closed to new replies.