I had a question in the WordPress forums about my links list RSS feed reader and I wrote up a little tutorial for it. Check out the links list in Mindful Musings for a better idea of what I mean. So here goes. I added the RSS 2.0 feed with each of my link manager links (updated them manually, look inside each link under link manager). Then in links.php (in wp-includes folder) I found this line (inside the get_links() function) that shows the updated links: if ($show_updated && $row->recently_updated) { echo get_settings(‘links_recently_updated_append’); } and replaced it with this: if ($show_updated && $row->recently_updated) { echo get_settings(‘links_recently_updated_append’); if ($row->link_rss!=””) echo ” <span style=\”border-bottom: 1px dashed #ccc; padding-bottom: 0px; font-size: 85%\”><a href=\”newsreader.php?url=$row->link_rss\”>RSS</a></span>\n”; } I find this line in the same file: $sql = “SELECT link_url, link_name, link_image, link_target, link_description, link_rating, link_rel, $length $recently_updated_test $get_updated FROM $tablelinks WHERE link_visible = ‘Y’ ” . $category_query; and […]
[Continue Reading...]
